mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00: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:
parent
bde53eafb9
commit
cb84acd116
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue