diff options
author | Andy Shevchenko <[email protected]> | 2023-08-22 17:25:14 +0300 |
---|---|---|
committer | Hans de Goede <[email protected]> | 2023-08-23 17:31:31 +0200 |
commit | b9e6cbf90fa26f93444806d18a3f629b0464d771 (patch) | |
tree | 45a903988c3eabc24a9fbd9e34e5eb66d619c134 | |
parent | 42bab8eac42584ecae2357a1a12b6588ee4cc53c (diff) |
platform/x86: p2sb: Make the Kconfig symbol hidden
The P2SB is used purely as a library and all users must select it with
depends on PCI
select P2SB if X86
statement. Without this the combination of different configuration
options may lead to build failures.
Suggested-by: Hans de Goede <[email protected]>
Signed-off-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Hans de Goede <[email protected]>
-rw-r--r-- | drivers/platform/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig index b94e23e84af0..a43db6731f34 100644 --- a/drivers/platform/x86/Kconfig +++ b/drivers/platform/x86/Kconfig @@ -1103,7 +1103,7 @@ config SEL3350_PLATFORM endif # X86_PLATFORM_DEVICES config P2SB - bool "Primary to Sideband (P2SB) bridge access support" + bool depends on PCI && X86 help The Primary to Sideband (P2SB) bridge is an interface to some |