diff options
author | Nico Huber <nico.huber@secunet.com> | 2017-05-18 16:04:06 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-05-22 11:07:43 +0200 |
commit | 7b811d5e3661874dfeca01901f3641eb70a95b1d (patch) | |
tree | 7394373e62d53d5dd31c8162cbcf64ad460213d6 /src/device/oprom/include/x86emu/regs.h | |
parent | 1b2d95feb30e30ccd6281117593ea1ae974fc480 (diff) |
device/oprom/include: Use IS_ENABLED() macro
Change-Id: Ibc3bf2f4f1e1bf1ffe9632aa150d549fcd6c201d
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/19762
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Diffstat (limited to 'src/device/oprom/include/x86emu/regs.h')
-rw-r--r-- | src/device/oprom/include/x86emu/regs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/oprom/include/x86emu/regs.h b/src/device/oprom/include/x86emu/regs.h index 2fee548ce6..b5fb9e22b5 100644 --- a/src/device/oprom/include/x86emu/regs.h +++ b/src/device/oprom/include/x86emu/regs.h @@ -278,7 +278,7 @@ typedef struct { u32 mode; volatile int intr; /* mask of pending interrupts */ volatile int debug; -#if CONFIG_X86EMU_DEBUG +#if IS_ENABLED(CONFIG_X86EMU_DEBUG) int check; u16 saved_ip; u16 saved_cs; |