mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
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>
This commit is contained in:
committed by
Hans de Goede
parent
bde53eafb9
commit
cb84acd116
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user