Commit a607468b authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

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
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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