mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
kconfig: remove unused expr_is_no()
This has not been used since commit e911503085
("Kconfig: Remove
bad inference rules expr_eliminate_dups2()").
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
1613e604df
commit
a607468b52
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user