summaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
authorFrans Hendriks <fhendriks@eltan.com>2021-01-27 07:57:18 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-02-01 08:46:11 +0000
commit7aaea37e3756803450201bcd9ef202aa4ddc3c02 (patch)
treec4533f1ebd4d8e82ab59ad008631a1346255e0a2 /src/device
parent5fc2bed629d2985807ae7784260837355cc9b8bb (diff)
downloadcoreboot-7aaea37e3756803450201bcd9ef202aa4ddc3c02.tar.xz
device/oprom/include/x86emu/fpu_regs.h: Fix lint error
`make lint` reports errors and warnings Solve the next errors: - SPACE_BEFORE_TAB - SPACING BUG = N/A TEST = Build Compulab Intense-PC with secure oprom enabled Change-Id: Ic7062e07a76bf95fe8e2e849f1d14342c9081a23 Signed-off-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49938 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/device')
-rw-r--r--src/device/oprom/include/x86emu/fpu_regs.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/device/oprom/include/x86emu/fpu_regs.h b/src/device/oprom/include/x86emu/fpu_regs.h
index a872e19896..10fe9f9d94 100644
--- a/src/device/oprom/include/x86emu/fpu_regs.h
+++ b/src/device/oprom/include/x86emu/fpu_regs.h
@@ -1,8 +1,8 @@
/****************************************************************************
*
-* Realmode X86 Emulator Library
+* Realmode X86 Emulator Library
*
-* Copyright (C) 1996-1999 SciTech Software, Inc.
+* Copyright (C) 1996-1999 SciTech Software, Inc.
* Copyright (C) David Mosberger-Tang
* Copyright (C) 1999 Egbert Eich
*
@@ -103,13 +103,13 @@ struct x86_fpu_registers {
#endif /* X86_FPU_SUPPORT */
#if CONFIG(X86EMU_DEBUG)
-# define DECODE_PRINTINSTR32(t,mod,rh,rl) \
- DECODE_PRINTF(t[(mod<<3)+(rh)]);
-# define DECODE_PRINTINSTR256(t,mod,rh,rl) \
- DECODE_PRINTF(t[(mod<<6)+(rh<<3)+(rl)]);
+# define DECODE_PRINTINSTR32(t, mod, rh, rl) \
+ DECODE_PRINTF(t[(mod<<3)+(rh)])
+# define DECODE_PRINTINSTR256(t, mod, rh, rl) \
+ DECODE_PRINTF(t[(mod<<6)+(rh<<3)+(rl)])
#else
-# define DECODE_PRINTINSTR32(t,mod,rh,rl)
-# define DECODE_PRINTINSTR256(t,mod,rh,rl)
+# define DECODE_PRINTINSTR32(t, mod, rh, rl)
+# define DECODE_PRINTINSTR256(t, mod, rh, rl)
#endif
#endif /* __X86EMU_FPU_REGS_H */