blob: adb3403cf2c1913dc01dae2d641228be90b961b0 [file] [log] [blame]
Stefan Reinauer9f043172012-12-14 13:06:49 -08001#ifndef __KCONFIG_H__
2#define __KCONFIG_H__
3
4#include <libpayload-config.h>
5
6/*
7 * Getting something that works in C and CPP for an arg that may or may
Gabe Black1ee2c6d2013-08-09 04:27:35 -07008 * not be defined is tricky. Here, if we have "#define CONFIG_LP_BOOGER 1"
Stefan Reinauer9f043172012-12-14 13:06:49 -08009 * we match on the placeholder define, insert the "0," for arg1 and generate
10 * the triplet (0, 1, 0). Then the last step cherry picks the 2nd arg (a one).
Gabe Black1ee2c6d2013-08-09 04:27:35 -070011 * When CONFIG_LP_BOOGER is not defined, we generate a (... 1, 0) pair, and when
Stefan Reinauer9f043172012-12-14 13:06:49 -080012 * the last step cherry picks the 2nd arg, we get a zero.
13 */
14#define __ARG_PLACEHOLDER_1 0,
15#define config_enabled(cfg) _config_enabled(cfg)
16#define _config_enabled(value) __config_enabled(__ARG_PLACEHOLDER_##value)
17#define __config_enabled(arg1_or_junk) ___config_enabled(arg1_or_junk 1, 0, 0)
18#define ___config_enabled(__ignored, val, ...) val
19
20#define IS_ENABLED(option) config_enabled(option)
21#endif