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>
This commit is contained in:
Elyes Haouas 2022-09-29 12:53:27 +02:00 committed by Felix Held
parent 7fd9fed908
commit 53ead5514f
1 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ static void register_reset_to_bl31(void)
};
/* gru/kevin reset pin: gpio0b3 */
param_reset.gpio.index = GPIO_RESET.raw,
param_reset.gpio.index = GPIO_RESET.raw;
register_bl31_aux_param(&param_reset.h);
}
@ -142,7 +142,7 @@ static void register_poweroff_to_bl31(void)
* 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(&param_poweroff.h);
}