Integral has uploaded this change for review.

View Change

arch/arm/include/arch/hlt.h: fix warnings & errors of for loop

Change-Id: Iae4830a927c8aaf366d49ddd2154f6a180078234
Signed-off-by: Integral <integral@member.fsf.org>
---
M src/arch/arm/include/arch/hlt.h
1 file changed, 2 insertions(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/73/82073/1
diff --git a/src/arch/arm/include/arch/hlt.h b/src/arch/arm/include/arch/hlt.h
index 7229643..7bdae39 100644
--- a/src/arch/arm/include/arch/hlt.h
+++ b/src/arch/arm/include/arch/hlt.h
@@ -5,7 +5,8 @@

static __always_inline void hlt(void)
{
- for (;;) ;
+ for (;;)
+ ;
}

#endif /* ARCH_HLT_H */

To view, visit change 82073. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Iae4830a927c8aaf366d49ddd2154f6a180078234
Gerrit-Change-Number: 82073
Gerrit-PatchSet: 1
Gerrit-Owner: Integral <integral@member.fsf.org>
Gerrit-MessageType: newchange