Skip to content

Commit 1399e22

Browse files
committed
platform/x86/intel: pmt: Use y instead of objs in Makefile
JIRA: https://issues.redhat.com/browse/RHEL-79553 commit cb84acd Author: Andy Shevchenko <[email protected]> Date: Fri Aug 6 18:50:17 2021 +0300 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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Hans de Goede <[email protected]> Signed-off-by: David Arcari <[email protected]>
1 parent cf51bfb commit 1399e22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/platform/x86/intel/pmt/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
# Intel Platform Monitoring Technology Drivers
55
#
66

7-
pmt_class-objs += class.o
87
obj-$(CONFIG_INTEL_PMT_CLASS) += pmt_class.o
9-
pmt_telemetry-objs += telemetry.o
8+
pmt_class-y := class.o
109
obj-$(CONFIG_INTEL_PMT_TELEMETRY) += pmt_telemetry.o
11-
pmt_crashlog-objs += crashlog.o
10+
pmt_telemetry-y := telemetry.o
1211
obj-$(CONFIG_INTEL_PMT_CRASHLOG) += pmt_crashlog.o
12+
pmt_crashlog-y := crashlog.o

0 commit comments

Comments
 (0)