aboutsummaryrefslogtreecommitdiff
path: root/src/device/oprom/include/io.h
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2017-05-18 16:04:06 +0200
committerNico Huber <nico.h@gmx.de>2017-05-22 11:07:43 +0200
commit7b811d5e3661874dfeca01901f3641eb70a95b1d (patch)
tree7394373e62d53d5dd31c8162cbcf64ad460213d6 /src/device/oprom/include/io.h
parent1b2d95feb30e30ccd6281117593ea1ae974fc480 (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/io.h')
-rw-r--r--src/device/oprom/include/io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/oprom/include/io.h b/src/device/oprom/include/io.h
index eb6bcee512..fc11640f72 100644
--- a/src/device/oprom/include/io.h
+++ b/src/device/oprom/include/io.h
@@ -11,7 +11,7 @@
* GNU General Public License for more details.
*/
-#if CONFIG_ARCH_X86
+#if IS_ENABLED(CONFIG_ARCH_X86)
#include <arch/io.h>
#else
void outb(u8 val, u16 port);