diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-11-18 15:21:37 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-11-22 13:46:47 +0000 |
commit | 2ba796eb231b375c5b37a118c3418dfa80e95cde (patch) | |
tree | 401d06b1de21582675906a2444fcd1f8dc88f2c9 /src/arch/x86/cpu.c | |
parent | 3a9980767e4ce054630cf7bb92fdb8a5405de53c (diff) |
src/arch: Remove unnecessary space after casts
Change-Id: I00551dfd963d47a58284bc31f21b0fa12130fe78
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69816
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/arch/x86/cpu.c')
-rw-r--r-- | src/arch/x86/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/cpu.c b/src/arch/x86/cpu.c index 6a8ddefa14..9fc52330dc 100644 --- a/src/arch/x86/cpu.c +++ b/src/arch/x86/cpu.c @@ -59,7 +59,7 @@ static inline int test_cyrix_52div(void) : "cc"); /* AH is 0x02 on Cyrix after the divide.. */ - return (unsigned char) (test >> 8) == 0x02; + return (unsigned char)(test >> 8) == 0x02; } /* |