diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-01-12 08:41:54 +0100 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-01-12 18:37:57 +0000 |
commit | 336fd64de75af9d75d829c573b2103d1b54da572 (patch) | |
tree | 32a10ec77c057244dc93902d75a8901cd7b16662 /util/lint/kconfig_lint | |
parent | 1a6c50e4188e9f7529ab05b19a212c0bca93e452 (diff) |
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/lint/kconfig_lint')
-rwxr-xr-x | util/lint/kconfig_lint | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/lint/kconfig_lint b/util/lint/kconfig_lint index 523fa3e9eb..e67aebd2d2 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(); |