Commit a607468b authored by Masahiro Yamada's avatar Masahiro Yamada

kconfig: remove unused expr_is_no()

This has not been used since commit e9115030 ("Kconfig: Remove
bad inference rules expr_eliminate_dups2()").
Signed-off-by: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 1613e604
......@@ -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
......
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