summaryrefslogtreecommitdiff
path: root/drivers/platform/x86/intel/pmt
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2021-08-06 18:50:17 +0300
committerHans de Goede <hdegoede@redhat.com>2021-08-12 10:26:28 +0300
commitcb84acd1165cf3b0f79d2ad09388bb263835974a (patch)
tree525760a5ed1803c04977611d615e737f87a53cd3 /drivers/platform/x86/intel/pmt
parentbde53eafb9257a5c9d2327a1cb887c7bcbf6c38f (diff)
downloadlinux-cb84acd1165cf3b0f79d2ad09388bb263835974a.tar.xz
platform/x86/intel: pmt: Use y instead of objs in Makefile
The 'objs' is for user space tools, for the kernel modules we should use 'y'. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20210806155017.4633-1-andriy.shevchenko@linux.intel.com Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform/x86/intel/pmt')
-rw-r--r--drivers/platform/x86/intel/pmt/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/platform/x86/intel/pmt/Makefile b/drivers/platform/x86/intel/pmt/Makefile
index 019103ee6522..279e158c7c23 100644
--- a/drivers/platform/x86/intel/pmt/Makefile
+++ b/drivers/platform/x86/intel/pmt/Makefile
@@ -4,9 +4,9 @@
# Intel Platform Monitoring Technology Drivers
#
-pmt_class-objs += class.o
obj-$(CONFIG_INTEL_PMT_CLASS) += pmt_class.o
-pmt_telemetry-objs += telemetry.o
+pmt_class-y := class.o
obj-$(CONFIG_INTEL_PMT_TELEMETRY) += pmt_telemetry.o
-pmt_crashlog-objs += crashlog.o
+pmt_telemetry-y := telemetry.o
obj-$(CONFIG_INTEL_PMT_CRASHLOG) += pmt_crashlog.o
+pmt_crashlog-y := crashlog.o