summaryrefslogtreecommitdiff
path: root/util/kconfig/lkc.h
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@coreboot.org>2023-11-20 17:58:40 +0100
committerPatrick Georgi <patrick@coreboot.org>2023-11-24 16:49:51 +0000
commit7f93aa491915b09a8d30b75d32dfa787b4d886f8 (patch)
tree6a3917f41f1191e8f5499eebb1a4b8216b06e651 /util/kconfig/lkc.h
parentf47e85fc7211494f501b5c9717a443e5b781b58d (diff)
util/kconfig: Uprev to Linux 6.1's kconfig
This also cleans up our patch queue. TEST=`util/abuild/abuild -C` output (config.h and config.build) remains the same Change-Id: I79159130ba3515ede59e9fb9fbf087e2ed76257a Signed-off-by: Patrick Georgi <patrick@coreboot.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79203 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'util/kconfig/lkc.h')
-rw-r--r--util/kconfig/lkc.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/util/kconfig/lkc.h b/util/kconfig/lkc.h
index 68dc8475b8..559e04af85 100644
--- a/util/kconfig/lkc.h
+++ b/util/kconfig/lkc.h
@@ -127,11 +127,6 @@ static inline struct symbol *sym_get_choice_value(struct symbol *sym)
return (struct symbol *)sym->curr.val;
}
-static inline bool sym_set_choice_value(struct symbol *ch, struct symbol *chval)
-{
- return sym_set_tristate_value(chval, yes);
-}
-
static inline bool sym_is_choice(struct symbol *sym)
{
return sym->flags & SYMBOL_CHOICE ? true : false;