diff options
-rw-r--r-- | src/mainboard/google/veyron/bootblock.c | 2 | ||||
-rw-r--r-- | src/mainboard/google/veyron_mickey/bootblock.c | 2 | ||||
-rw-r--r-- | src/mainboard/google/veyron_rialto/bootblock.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/google/veyron/bootblock.c b/src/mainboard/google/veyron/bootblock.c index 0d11462a88..6b0cc81965 100644 --- a/src/mainboard/google/veyron/bootblock.c +++ b/src/mainboard/google/veyron/bootblock.c @@ -14,7 +14,7 @@ #include "board.h" -void bootblock_mainboard_early_init() +void bootblock_mainboard_early_init(void) { if (CONFIG(CONSOLE_SERIAL)) { assert(CONFIG_CONSOLE_SERIAL_UART_ADDRESS == UART2_BASE); diff --git a/src/mainboard/google/veyron_mickey/bootblock.c b/src/mainboard/google/veyron_mickey/bootblock.c index d9358a3720..261d7e5402 100644 --- a/src/mainboard/google/veyron_mickey/bootblock.c +++ b/src/mainboard/google/veyron_mickey/bootblock.c @@ -14,7 +14,7 @@ #include "board.h" -void bootblock_mainboard_early_init() +void bootblock_mainboard_early_init(void) { if (CONFIG(CONSOLE_SERIAL)) { assert(CONFIG_CONSOLE_SERIAL_UART_ADDRESS == UART2_BASE); diff --git a/src/mainboard/google/veyron_rialto/bootblock.c b/src/mainboard/google/veyron_rialto/bootblock.c index 52303786b0..a0ce1ab1c2 100644 --- a/src/mainboard/google/veyron_rialto/bootblock.c +++ b/src/mainboard/google/veyron_rialto/bootblock.c @@ -14,7 +14,7 @@ #include "board.h" -void bootblock_mainboard_early_init() +void bootblock_mainboard_early_init(void) { if (CONFIG(CONSOLE_SERIAL)) { assert(CONFIG_CONSOLE_SERIAL_UART_ADDRESS == UART2_BASE); |