summaryrefslogtreecommitdiff
path: root/scripts/kconfig/expr.h
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2024-06-03 12:59:25 +0100
committerMark Brown <broonie@kernel.org>2024-06-03 12:59:25 +0100
commit0ae747759930186fbc3ab470ac4e40899c52438c (patch)
treed3f2ffa3c6f91f711bac9155320004a34e59adce /scripts/kconfig/expr.h
parenta8bd778958eface44a4931b30f1db5c98c9e6f40 (diff)
parentc3f38fa61af77b49866b006939479069cd451173 (diff)
regmap: Merge up fixes
We need these to get the i.MX8 boards working in CI again.
Diffstat (limited to 'scripts/kconfig/expr.h')
-rw-r--r--scripts/kconfig/expr.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h
index d965e427753e..fa50fc45622e 100644
--- a/scripts/kconfig/expr.h
+++ b/scripts/kconfig/expr.h
@@ -302,11 +302,6 @@ static inline int expr_is_yes(struct expr *e)
return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes);
}
-static inline int expr_is_no(struct expr *e)
-{
- return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no);
-}
-
#ifdef __cplusplus
}
#endif