X86 platform drivers
 help / color / mirror / Atom feed
* [PATCH] platform/x86: pmt: Make PMT Kconfig options depend on INTEL_PMT_CLASS
@ 2021-01-26 20:20 Hans de Goede
  2021-01-26 22:00 ` David E. Box
  0 siblings, 1 reply; 3+ messages in thread
From: Hans de Goede @ 2021-01-26 20:20 UTC (permalink / raw)
  To: Mark Gross
  Cc: Hans de Goede, Andy Shevchenko, platform-driver-x86,
	Linus Torvalds, Alexander Duyck, David E . Box

Make the PMT Kconfig options depend on INTEL_PMT_CLASS instead of
selecting it. Select should only be used with hidden options and
INTEL_PMT_CLASS is not hidden.

This will stop Kconfig from asking if INTEL_PMT_TELEMETRY and
INTEL_PMT_CRASHLOG should be enabled after the user says no
to the INTEL_PMT_CLASS prompt.

Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Alexander Duyck <alexander.h.duyck@linux.intel.com>
Cc: David E. Box <david.e.box@linux.intel.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
---
 drivers/platform/x86/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index 9a73e7baa344..d4f32fc0e40e 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -1383,7 +1383,7 @@ config INTEL_PMT_CLASS
 
 config INTEL_PMT_TELEMETRY
 	tristate "Intel Platform Monitoring Technology (PMT) Telemetry driver"
-	select INTEL_PMT_CLASS
+	depends on INTEL_PMT_CLASS
 	help
 	  The Intel Platform Monitory Technology (PMT) Telemetry driver provides
 	  access to hardware telemetry metrics on devices that support the
@@ -1394,7 +1394,7 @@ config INTEL_PMT_TELEMETRY
 
 config INTEL_PMT_CRASHLOG
 	tristate "Intel Platform Monitoring Technology (PMT) Crashlog driver"
-	select INTEL_PMT_CLASS
+	depends on INTEL_PMT_CLASS
 	help
 	  The Intel Platform Monitoring Technology (PMT) crashlog driver provides
 	  access to hardware crashlog capabilities on devices that support the
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-03 10:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-26 20:20 [PATCH] platform/x86: pmt: Make PMT Kconfig options depend on INTEL_PMT_CLASS Hans de Goede
2021-01-26 22:00 ` David E. Box
2021-02-03 10:58   ` Hans de Goede

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox