From: Masahiro Yamada Date: Tue, 18 Jun 2024 10:35:26 +0000 (+0900) Subject: kconfig: remove expr_list_for_each_sym() macro X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=8926bc901d617f21d5ebd2eda17aeea55bbecd9a;p=users%2Fjedix%2Flinux-maple.git kconfig: remove expr_list_for_each_sym() macro All users of this macro have been converted. Remove it. Signed-off-by: Masahiro Yamada --- diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 7acf27a4f454..1d1c4442c941 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h @@ -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;