Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: remove expr_list_for_each_sym() macro

All users of this macro have been converted. Remove it.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

-3
-3
scripts/kconfig/expr.h
··· 43 43 #define EXPR_AND(dep1, dep2) (((dep1)<(dep2))?(dep1):(dep2)) 44 44 #define EXPR_NOT(dep) (2-(dep)) 45 45 46 - #define expr_list_for_each_sym(l, e, s) \ 47 - for (e = (l); e && (s = e->right.sym); e = e->left.expr) 48 - 49 46 struct expr_value { 50 47 struct expr *expr; 51 48 tristate tri;