mb/google/parrot: Replace while-loop with do-while
Fixes linter error complaining about trailing semicolon. Change-Id: I3f74f25cb2e3edcdd509abd86d80098241c05741 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49201 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
57ef7c37d8
commit
fb777b5da8
|
@ -39,7 +39,7 @@ void mainboard_smi_gpi(u32 gpi_sts)
|
||||||
printk(BIOS_DEBUG, "%s: %x\n", __func__, gpi_sts);
|
printk(BIOS_DEBUG, "%s: %x\n", __func__, gpi_sts);
|
||||||
if (gpi_sts & (1 << EC_SMI_GPI)) {
|
if (gpi_sts & (1 << EC_SMI_GPI)) {
|
||||||
/* Process all pending events from EC */
|
/* Process all pending events from EC */
|
||||||
while (mainboard_smi_ec() != EC_NO_EVENT);
|
do {} while (mainboard_smi_ec() != EC_NO_EVENT);
|
||||||
} else if (gpi_sts & (1 << EC_LID_GPI)) {
|
} else if (gpi_sts & (1 << EC_LID_GPI)) {
|
||||||
printk(BIOS_DEBUG, "LID CLOSED, SHUTDOWN\n");
|
printk(BIOS_DEBUG, "LID CLOSED, SHUTDOWN\n");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue