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:
parent
7fd9fed908
commit
53ead5514f
|
@ -121,7 +121,7 @@ static void register_reset_to_bl31(void)
|
||||||
};
|
};
|
||||||
|
|
||||||
/* gru/kevin reset pin: gpio0b3 */
|
/* 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);
|
register_bl31_aux_param(¶m_reset.h);
|
||||||
}
|
}
|
||||||
|
@ -142,7 +142,7 @@ static void register_poweroff_to_bl31(void)
|
||||||
* reuse with tsadc int pin, so iomux need set back to
|
* reuse with tsadc int pin, so iomux need set back to
|
||||||
* gpio in BL31 and depthcharge before you setting this gpio
|
* 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);
|
register_bl31_aux_param(¶m_poweroff.h);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue