Commit 8926bc90 authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: remove expr_list_for_each_sym() macro

All users of this macro have been converted. Remove it.
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 6e6d0e91
......@@ -43,9 +43,6 @@ struct expr {
#define EXPR_AND(dep1, dep2) (((dep1)<(dep2))?(dep1):(dep2))
#define EXPR_NOT(dep) (2-(dep))
#define expr_list_for_each_sym(l, e, s) \
for (e = (l); e && (s = e->right.sym); e = e->left.expr)
struct expr_value {
struct expr *expr;
tristate tri;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment