UPSTREAM: drivers/intel/fsp2_0: Switch from binary to decimal
Fix the following warning detected by checkpatch.pl:
WARNING: Avoid gcc v4.3+ binary constant extension:
TEST=Build and run on Galileo Gen2
Change-Id: Icf867673b99f74be331ab81a2b41313d2beaca61
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: ce46c5b6a1
Original-Change-Id: Ied50b94ecae4d3bde5812f6b54bbe2421fd48588
Original-Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Original-Reviewed-on: https://review.coreboot.org/18747
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/453367
This commit is contained in:
parent
205b3a6fb1
commit
137b9ae242
1 changed files with 3 additions and 3 deletions
|
|
@ -21,9 +21,9 @@
|
|||
#define FSP_HDR_OFFSET 0x94
|
||||
#define FSP_HDR_LEN 0x48
|
||||
#define FSP_HDR_SIGNATURE "FSPH"
|
||||
#define FSP_HDR_ATTRIB_FSPT 0b0001
|
||||
#define FSP_HDR_ATTRIB_FSPM 0b0010
|
||||
#define FSP_HDR_ATTRIB_FSPS 0b0011
|
||||
#define FSP_HDR_ATTRIB_FSPT 1
|
||||
#define FSP_HDR_ATTRIB_FSPM 2
|
||||
#define FSP_HDR_ATTRIB_FSPS 3
|
||||
|
||||
struct fsp_header {
|
||||
uint32_t fsp_revision;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue