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>
This commit is contained in:
parent
5fc2bed629
commit
7aaea37e37
|
@ -104,9 +104,9 @@ struct x86_fpu_registers {
|
||||||
|
|
||||||
#if CONFIG(X86EMU_DEBUG)
|
#if CONFIG(X86EMU_DEBUG)
|
||||||
# define DECODE_PRINTINSTR32(t, mod, rh, rl) \
|
# define DECODE_PRINTINSTR32(t, mod, rh, rl) \
|
||||||
DECODE_PRINTF(t[(mod<<3)+(rh)]);
|
DECODE_PRINTF(t[(mod<<3)+(rh)])
|
||||||
# define DECODE_PRINTINSTR256(t, mod, rh, rl) \
|
# define DECODE_PRINTINSTR256(t, mod, rh, rl) \
|
||||||
DECODE_PRINTF(t[(mod<<6)+(rh<<3)+(rl)]);
|
DECODE_PRINTF(t[(mod<<6)+(rh<<3)+(rl)])
|
||||||
#else
|
#else
|
||||||
# define DECODE_PRINTINSTR32(t, mod, rh, rl)
|
# define DECODE_PRINTINSTR32(t, mod, rh, rl)
|
||||||
# define DECODE_PRINTINSTR256(t, mod, rh, rl)
|
# define DECODE_PRINTINSTR256(t, mod, rh, rl)
|
||||||
|
|
Loading…
Reference in New Issue