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: Ied50b94ecae4d3bde5812f6b54bbe2421fd48588 Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/18747 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
7732b35fb7
commit
ce46c5b6a1
|
@ -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…
Reference in New Issue