From 91d1e76fd168defce4132d1e308b68a2013a89df Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Tue, 7 Mar 2017 14:31:19 -0800 Subject: src/include: Remove spaces before ( and after ) Fix the following error messages found by checkpatch.pl: ERROR: space prohibited after that open parenthesis '(' ERROR: space prohibited before that close parenthesis ')' TEST=Build and run on Galileo Gen2 Change-Id: I2a9a0df640c51ff3efa83dde852dd6ff37ac3c06 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/18651 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth --- src/include/cpu/x86/lapic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/cpu') diff --git a/src/include/cpu/x86/lapic.h b/src/include/cpu/x86/lapic.h index 69a6738c8c..3448ced2d0 100644 --- a/src/include/cpu/x86/lapic.h +++ b/src/include/cpu/x86/lapic.h @@ -25,7 +25,7 @@ static inline __attribute__((always_inline)) void lapic_write(unsigned long reg, static inline __attribute__((always_inline)) void lapic_wait_icr_idle(void) { - do { } while ( lapic_read( LAPIC_ICR ) & LAPIC_ICR_BUSY ); + do { } while (lapic_read(LAPIC_ICR) & LAPIC_ICR_BUSY); } static inline void enable_lapic(void) -- cgit v1.2.3