mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
fixdep: remove leftover handling of IS_BUILTIN/IS_MODULE
I removed CONFIG_IS_BUILTIN and CONFIG_IS_MODULE in commit7d78a4547d
("linux/kconfig.h: remove unused helper macros"), but fixdep.c still looks for those. It's harmless, but also pointless and possibly confusing to a future reader. Fixes:7d78a4547d
("linux/kconfig.h: remove unused helper macros") Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk>
This commit is contained in:
parent
331f0800f1
commit
33b9027c4e
1 changed files with 0 additions and 4 deletions
|
@ -257,13 +257,9 @@ static void parse_config_file(const char *p)
|
|||
/*
|
||||
* U-Boot also handles
|
||||
* CONFIG_IS_ENABLED(...)
|
||||
* CONFIG_IS_BUILTIN(...)
|
||||
* CONFIG_IS_MODULE(...)
|
||||
* CONFIG_VAL(...)
|
||||
*/
|
||||
if ((q - p == 10 && !memcmp(p, "IS_ENABLED(", 11)) ||
|
||||
(q - p == 10 && !memcmp(p, "IS_BUILTIN(", 11)) ||
|
||||
(q - p == 9 && !memcmp(p, "IS_MODULE(", 10)) ||
|
||||
(q - p == 3 && !memcmp(p, "VAL(", 4))) {
|
||||
p = q + 1;
|
||||
q = p;
|
||||
|
|
Loading…
Reference in a new issue