Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/67973 )
Change subject: mb/google/gru/mainboard.c: Replace comma with semicolon ......................................................................
mb/google/gru/mainboard.c: Replace comma with semicolon
Signed-off-by: Elyes Haouas ehaouas@noos.fr Change-Id: Ibc257c2306351614669bd25ac83c24475f80fc6b Reviewed-on: https://review.coreboot.org/c/coreboot/+/67973 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Julius Werner jwerner@chromium.org --- M src/mainboard/google/gru/mainboard.c 1 file changed, 15 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Julius Werner: Looks good to me, approved
diff --git a/src/mainboard/google/gru/mainboard.c b/src/mainboard/google/gru/mainboard.c index 5327771..ee38e4d 100644 --- a/src/mainboard/google/gru/mainboard.c +++ b/src/mainboard/google/gru/mainboard.c @@ -121,7 +121,7 @@ };
/* gru/kevin reset pin: gpio0b3 */ - param_reset.gpio.index = GPIO_RESET.raw, + param_reset.gpio.index = GPIO_RESET.raw;
register_bl31_aux_param(¶m_reset.h); } @@ -142,7 +142,7 @@ * reuse with tsadc int pin, so iomux need set back to * gpio in BL31 and depthcharge before you setting this gpio */ - param_poweroff.gpio.index = GPIO_POWEROFF.raw, + param_poweroff.gpio.index = GPIO_POWEROFF.raw;
register_bl31_aux_param(¶m_poweroff.h); }