diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2006-06-09 01:12:40 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@mars.ravnborg.org> | 2006-06-09 01:31:30 -0400 |
commit | c0e150acde52e4661675539bf5323309270f2e83 (patch) | |
tree | 0a2d1a7a3725e88c321ffb6980aea3d6c90b5bd4 /scripts/kconfig/expr.c | |
parent | c955ccafc38e77312b4c65e5a70960080fb8a3f2 (diff) |
kconfig: remove SYMBOL_{YES,MOD,NO}
The SYMBOL_{YES,MOD,NO} are not really used anymore (they were more used be
the cml1 converter), so just remove them.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/kconfig/expr.c')
-rw-r--r-- | scripts/kconfig/expr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c index 30e4f9d69c2f..87238afb21b7 100644 --- a/scripts/kconfig/expr.c +++ b/scripts/kconfig/expr.c | |||
@@ -145,7 +145,8 @@ static void __expr_eliminate_eq(enum expr_type type, struct expr **ep1, struct e | |||
145 | return; | 145 | return; |
146 | } | 146 | } |
147 | if (e1->type == E_SYMBOL && e2->type == E_SYMBOL && | 147 | if (e1->type == E_SYMBOL && e2->type == E_SYMBOL && |
148 | e1->left.sym == e2->left.sym && (e1->left.sym->flags & (SYMBOL_YES|SYMBOL_NO))) | 148 | e1->left.sym == e2->left.sym && |
149 | (e1->left.sym == &symbol_yes || e1->left.sym == &symbol_no)) | ||
149 | return; | 150 | return; |
150 | if (!expr_eq(e1, e2)) | 151 | if (!expr_eq(e1, e2)) |
151 | return; | 152 | return; |