mb/google/oak/bootblock.c: Replace comma with semicolon
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I4721d24aecd53c51c66c7d448b7c331d50a09712 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67972 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
parent
53ead5514f
commit
c9cacc0565
|
@ -31,7 +31,7 @@ static void nor_set_gpio_pinmux(void)
|
|||
/* EINT4: 0x10005B20[14:13] */
|
||||
clrsetbits16(&mtk_gpio->drv_mode[2].val, 0xf << 12, 2 << 13);
|
||||
/* EINT5~EINT9: 0x10005B30[2:1] */
|
||||
clrsetbits16(&mtk_gpio->drv_mode[3].val, 0xf << 0, 2 << 1),
|
||||
clrsetbits16(&mtk_gpio->drv_mode[3].val, 0xf << 0, 2 << 1);
|
||||
|
||||
gpio_set_pull(GPIO(EINT4), GPIO_PULL_ENABLE, GPIO_PULL_UP);
|
||||
gpio_set_pull(GPIO(EINT5), GPIO_PULL_ENABLE, GPIO_PULL_UP);
|
||||
|
|
Loading…
Reference in New Issue