summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2024-01-12 08:41:54 +0100
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2024-01-12 18:37:57 +0000
commit336fd64de75af9d75d829c573b2103d1b54da572 (patch)
tree32a10ec77c057244dc93902d75a8901cd7b16662 /util
parent1a6c50e4188e9f7529ab05b19a212c0bca93e452 (diff)
downloadcoreboot-336fd64de75af9d75d829c573b2103d1b54da572.tar.gz
coreboot-336fd64de75af9d75d829c573b2103d1b54da572.tar.bz2
coreboot-336fd64de75af9d75d829c573b2103d1b54da572.zip
lint/kconfig_lint: Remove SOUTH_BRIDGE_OPTIONS
SOUTH_BRIDGE_OPTIONS Kconfig symbol is no longer used. Change-Id: I2380f1ce48afd191755d8b3dcab0b51909f5231f Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79913 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'util')
-rwxr-xr-xutil/lint/kconfig_lint2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lint/kconfig_lint b/util/lint/kconfig_lint
index 523fa3e9eb19..e67aebd2d2b6 100755
--- a/util/lint/kconfig_lint
+++ b/util/lint/kconfig_lint
@@ -46,7 +46,7 @@ my %used_symbols; # structure of symbols used in the tree, a
my @collected_symbols; #
my %selected_symbols; # list of symbols that are enabled by a select statement
-my $exclude_unused = '_SPECIFIC_OPTIONS|SOUTH_BRIDGE_OPTIONS';
+my $exclude_unused = '_SPECIFIC_OPTIONS';
Main();