diff options
author | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-12-08 02:28:39 +1100 |
---|---|---|
committer | Edward O'Callaghan <eocallaghan@alterapraxis.com> | 2014-12-07 21:31:04 +0100 |
commit | d189085b3fb98b35f52213c5546ec55722eefc01 (patch) | |
tree | 7a591acb3cf6579c415ed3c1e31aec6516e4d07d /src | |
parent | fc3643f326097ae9efd0f6cf7203c6ee61624b1c (diff) |
mainboard/google/samus: 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: Id3b16872f62660393d938d6f95977a4e3842d0d1
Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-on: http://review.coreboot.org/7690
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/samus/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/samus/romstage.c b/src/mainboard/google/samus/romstage.c index abd93c42e9..bdf0e7057a 100644 --- a/src/mainboard/google/samus/romstage.c +++ b/src/mainboard/google/samus/romstage.c @@ -146,7 +146,7 @@ void mainboard_romstage_entry(unsigned long bist) { 0x0040, 1, USB_OC_PIN_SKIP, /* P7: BT */ USB_PORT_INTERNAL }, }, - usb3_ports: { + .usb3_ports = { /* Enable, OCn# */ { 1, 0 }, /* P1: HOST PORT */ { 1, 1 }, /* P2: HOST PORT */ |