Skip to content

Commit 8926bc9

Browse files
committed
kconfig: remove expr_list_for_each_sym() macro
All users of this macro have been converted. Remove it. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 6e6d0e9 commit 8926bc9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

scripts/kconfig/expr.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ struct expr {
4343
#define EXPR_AND(dep1, dep2) (((dep1)<(dep2))?(dep1):(dep2))
4444
#define EXPR_NOT(dep) (2-(dep))
4545

46-
#define expr_list_for_each_sym(l, e, s) \
47-
for (e = (l); e && (s = e->right.sym); e = e->left.expr)
48-
4946
struct expr_value {
5047
struct expr *expr;
5148
tristate tri;

0 commit comments

Comments
 (0)