aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2016-05-05 20:21:47 -0700
committerMartin Roth <martinroth@google.com>2016-05-13 17:34:13 +0200
commit0b4db1399462dc8febb6d5c798b68c257f9055b1 (patch)
treef6c303ce9f8017c9f6e4dca3a7c11011332c3955 /src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c
parent1eaf58be2c2cc16f2fec7cfd0a58da4402647f70 (diff)
vendorcode/intel/fsp1_0: Don't break GCC strict aliasing
Change-Id: I6b345670db7df652b8b712b721dfe2905373e0d5 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/14630 Tested-by: build bot (Jenkins) Reviewed-by: Leroy P Leahy <leroy.p.leahy@intel.com> Reviewed-by: York Yang <york.yang@intel.com>
Diffstat (limited to 'src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c')
-rw-r--r--src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c b/src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c
index 4214b3ae22..5a1c600a24 100644
--- a/src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c
+++ b/src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x/srx/fsphob.c
@@ -145,11 +145,11 @@ GetNextHob (
//
// Parse the HOB list until end of list or matching type is found.
//
- while (!END_OF_HOB_LIST (Hob)) {
+ while (!END_OF_HOB_LIST(Hob.Raw)) {
if (Hob.Header->HobType == Type) {
return Hob.Raw;
}
- Hob.Raw = GET_NEXT_HOB (Hob);
+ Hob.Raw = GET_NEXT_HOB(Hob.Raw);
}
return NULL;
}
@@ -186,7 +186,7 @@ GetNextGuidHob (
if (CompareGuid (Guid, &GuidHob.Guid->Name)) {
break;
}
- GuidHob.Raw = GET_NEXT_HOB (GuidHob);
+ GuidHob.Raw = GET_NEXT_HOB(GuidHob.Raw);
}
return GuidHob.Raw;
}