mainboard/intel/baskingridge 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: I61fe91e467c29f144323af9c4612420f322098b4
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/5826
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
			
			
This commit is contained in:
		
				
					committed by
					
						
						Patrick Georgi
					
				
			
			
				
	
			
			
			
						parent
						
							6aa6509cae
						
					
				
				
					commit
					c686c95c98
				
			@@ -70,31 +70,31 @@ const struct rcba_config_instruction rcba_config[] = {
 | 
				
			|||||||
void mainboard_romstage_entry(unsigned long bist)
 | 
					void mainboard_romstage_entry(unsigned long bist)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	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: DEFAULT_PCIEXBAR,
 | 
							.pciexbar = DEFAULT_PCIEXBAR,
 | 
				
			||||||
		smbusbar: SMBUS_IO_BASE,
 | 
							.smbusbar = SMBUS_IO_BASE,
 | 
				
			||||||
		wdbbar: 0x4000000,
 | 
							.wdbbar = 0x4000000,
 | 
				
			||||||
		wdbsize: 0x1000,
 | 
							.wdbsize = 0x1000,
 | 
				
			||||||
		hpet_address: HPET_ADDR,
 | 
							.hpet_address = HPET_ADDR,
 | 
				
			||||||
		rcba: DEFAULT_RCBA,
 | 
							.rcba = DEFAULT_RCBA,
 | 
				
			||||||
		pmbase: DEFAULT_PMBASE,
 | 
							.pmbase = DEFAULT_PMBASE,
 | 
				
			||||||
		gpiobase: DEFAULT_GPIOBASE,
 | 
							.gpiobase = DEFAULT_GPIOBASE,
 | 
				
			||||||
		temp_mmio_base: 0xfed08000,
 | 
							.temp_mmio_base = 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, 0xa2, 0xa4, 0xa6 },
 | 
							.spd_addresses = { 0xa0, 0xa2, 0xa4, 0xa6 },
 | 
				
			||||||
		ec_present: 0,
 | 
							.ec_present = 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: 0,
 | 
							.dimm_channel0_disabled = 0,
 | 
				
			||||||
		dimm_channel1_disabled: 0,
 | 
							.dimm_channel1_disabled = 0,
 | 
				
			||||||
		max_ddr3_freq: 1600,
 | 
							.max_ddr3_freq = 1600,
 | 
				
			||||||
		usb2_ports: {
 | 
							.usb2_ports = {
 | 
				
			||||||
			/* Length, Enable, OCn#, Location */
 | 
								/* Length, Enable, OCn#, Location */
 | 
				
			||||||
			{ 0x0040, 1, 0, /* P0: Back USB3 port  (OC0) */
 | 
								{ 0x0040, 1, 0, /* P0: Back USB3 port  (OC0) */
 | 
				
			||||||
			  USB_PORT_BACK_PANEL },
 | 
								  USB_PORT_BACK_PANEL },
 | 
				
			||||||
@@ -125,7 +125,7 @@ void mainboard_romstage_entry(unsigned long bist)
 | 
				
			|||||||
			{ 0x0040, 1, 6, /* P13: USB/DP Jack (OC6) */
 | 
								{ 0x0040, 1, 6, /* P13: USB/DP Jack (OC6) */
 | 
				
			||||||
			  USB_PORT_FRONT_PANEL },
 | 
								  USB_PORT_FRONT_PANEL },
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
		usb3_ports: {
 | 
							.usb3_ports = {
 | 
				
			||||||
			/* Enable, OCn# */
 | 
								/* Enable, OCn# */
 | 
				
			||||||
			{ 1, 0 }, /* P1; */
 | 
								{ 1, 0 }, /* P1; */
 | 
				
			||||||
			{ 1, 0 }, /* P2; */
 | 
								{ 1, 0 }, /* P2; */
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user