mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Adds a KUNIT test for the intel_pmt_get_regions_by_feature() API. Signed-off-by: David E. Box <david.e.box@linux.intel.com> Link: https://lore.kernel.org/r/20250703022832.1302928-16-david.e.box@linux.intel.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
16 lines
584 B
Makefile
16 lines
584 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for linux/drivers/platform/x86/intel/pmt
|
|
# Intel Platform Monitoring Technology Drivers
|
|
#
|
|
|
|
obj-$(CONFIG_INTEL_PMT_CLASS) += pmt_class.o
|
|
pmt_class-y := class.o
|
|
obj-$(CONFIG_INTEL_PMT_TELEMETRY) += pmt_telemetry.o
|
|
pmt_telemetry-y := telemetry.o
|
|
obj-$(CONFIG_INTEL_PMT_CRASHLOG) += pmt_crashlog.o
|
|
pmt_crashlog-y := crashlog.o
|
|
obj-$(CONFIG_INTEL_PMT_DISCOVERY) += pmt_discovery.o
|
|
pmt_discovery-y := discovery.o features.o
|
|
obj-$(CONFIG_INTEL_PMT_KUNIT_TEST) += pmt-discovery-kunit.o
|
|
pmt-discovery-kunit-y := discovery-kunit.o
|