mainboard/google/butterfly: Fix usage of GNU field designator ext

Following the reasoning in,
8089f17 mainboard/lenovo/x230 Fix usage of GNU field designator extension

In C99 we defined a syntax for this. GCC's old syntax was deprecated.

Change-Id: I167d2c9ad3f690de41fee51dd7800ce76b328e41
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/7231
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Tested-by: build bot (Jenkins)
This commit is contained in:
Edward O'Callaghan 2014-10-29 06:15:57 +11:00
parent 9b63c9bde2
commit 38b98546a7
1 changed files with 24 additions and 24 deletions

View File

@ -119,33 +119,33 @@ void main(unsigned long bist)
int cbmem_was_initted; int cbmem_was_initted;
struct pei_data pei_data = { struct pei_data pei_data = {
pei_version: PEI_VERSION, .pei_version = PEI_VERSION,
mchbar: DEFAULT_MCHBAR, .mchbar = DEFAULT_MCHBAR,
dmibar: DEFAULT_DMIBAR, .dmibar = DEFAULT_DMIBAR,
epbar: DEFAULT_EPBAR, .epbar = DEFAULT_EPBAR,
pciexbar: CONFIG_MMCONF_BASE_ADDRESS, .pciexbar = CONFIG_MMCONF_BASE_ADDRESS,
smbusbar: SMBUS_IO_BASE, .smbusbar = SMBUS_IO_BASE,
wdbbar: 0x4000000, .wdbbar = 0x4000000,
wdbsize: 0x1000, .wdbsize = 0x1000,
hpet_address: CONFIG_HPET_ADDRESS, .hpet_address = CONFIG_HPET_ADDRESS,
rcba: DEFAULT_RCBABASE, .rcba = DEFAULT_RCBABASE,
pmbase: DEFAULT_PMBASE, .pmbase = DEFAULT_PMBASE,
gpiobase: DEFAULT_GPIOBASE, .gpiobase = DEFAULT_GPIOBASE,
thermalbase: 0xfed08000, .thermalbase = 0xfed08000,
system_type: 0, // 0 Mobile, 1 Desktop/Server .system_type = 0, // 0 Mobile, 1 Desktop/Server
tseg_size: CONFIG_SMM_TSEG_SIZE, .tseg_size = CONFIG_SMM_TSEG_SIZE,
spd_addresses: { 0xA0, 0x00,0xA4,0x00 }, .spd_addresses = { 0xA0, 0x00,0xA4,0x00 },
ts_addresses: { 0x00, 0x00, 0x00, 0x00 }, .ts_addresses = { 0x00, 0x00, 0x00, 0x00 },
ec_present: 1, .ec_present = 1,
ddr3lv_support: 0, .ddr3lv_support = 0,
// 0 = leave channel enabled // 0 = leave channel enabled
// 1 = disable dimm 0 on channel // 1 = disable dimm 0 on channel
// 2 = disable dimm 1 on channel // 2 = disable dimm 1 on channel
// 3 = disable dimm 0+1 on channel // 3 = disable dimm 0+1 on channel
dimm_channel0_disabled: 2, .dimm_channel0_disabled = 2,
dimm_channel1_disabled: 2, .dimm_channel1_disabled = 2,
max_ddr3_freq: 1600, .max_ddr3_freq = 1600,
usb_port_config: { .usb_port_config = {
/* enabled usb oc pin length */ /* enabled usb oc pin length */
{ 1, 0, 0x0040 }, /* P0: Right USB 3.0 #1 (no OC) */ { 1, 0, 0x0040 }, /* P0: Right USB 3.0 #1 (no OC) */
{ 1, 0, 0x0040 }, /* P1: Right USB 3.0 #2 (no OC) */ { 1, 0, 0x0040 }, /* P1: Right USB 3.0 #2 (no OC) */
@ -162,7 +162,7 @@ void main(unsigned long bist)
{ 0, 4, 0x0000 }, /* P12: Empty */ { 0, 4, 0x0000 }, /* P12: Empty */
{ 0, 4, 0x0000 }, /* P13: Empty */ { 0, 4, 0x0000 }, /* P13: Empty */
}, },
ddr_refresh_rate_config: 2, /* Force double refresh rate */ .ddr_refresh_rate_config = 2, /* Force double refresh rate */
}; };
timestamp_init(get_initial_timestamp()); timestamp_init(get_initial_timestamp());