summaryrefslogtreecommitdiffstats
path: root/src/include/kconfig.h
diff options
context:
space:
mode:
authorNico Huber <nico.h@gmx.de>2019-04-06 16:16:36 +0200
committerNico Huber <nico.h@gmx.de>2019-06-04 13:33:40 +0000
commit12f0e42cb4e66f0ebe198b051be31b68d876d2e5 (patch)
tree133eaf48f14071b698f6b2fab70505b2d43be300 /src/include/kconfig.h
parent2dbc09567780b7d1bbb311dff5b2789b5c2184a4 (diff)
downloadcoreboot-12f0e42cb4e66f0ebe198b051be31b68d876d2e5.tar.gz
coreboot-12f0e42cb4e66f0ebe198b051be31b68d876d2e5.tar.bz2
coreboot-12f0e42cb4e66f0ebe198b051be31b68d876d2e5.zip
kconfig: Drop IS_ENABLED() macro
We keep its definition in libpayload, though, to maintain compatibility with existing payload code. For now. Change-Id: I8fc0d0136ba2316ef393c5c17f2b3ac3a9c6328d Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32230 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/include/kconfig.h')
-rw-r--r--src/include/kconfig.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/kconfig.h b/src/include/kconfig.h
index 0478548d5987..50ef3022935b 100644
--- a/src/include/kconfig.h
+++ b/src/include/kconfig.h
@@ -17,7 +17,6 @@
#define __config_enabled(arg1_or_junk) ___config_enabled(arg1_or_junk 1, 0, 0)
#define ___config_enabled(__ignored, val, ...) val
-#define IS_ENABLED(option) config_enabled(option) /* deprecated */
#define CONFIG(option) config_enabled(CONFIG_##option)
#endif