From: Kurt Borja Date: Tue, 18 Feb 2025 19:41:08 +0000 (-0500) Subject: platform/x86: dell: dell-wmi-sysman: Use *-y instead of *-objs in Makefile X-Git-Tag: io_uring-6.15-20250403~94^2~26 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=363171c96a15f558cd622e10ea100c505132f7b8;p=linux-block.git platform/x86: dell: dell-wmi-sysman: Use *-y instead of *-objs in Makefile The `objs` suffix is reserved for user-space tools. Use the `y` suffix instead, which is usually used for kernel drivers. Suggested-by: Andy Shevchenko Signed-off-by: Kurt Borja Reviewed-by: Andy Shevchenko Link: https://lore.kernel.org/r/20250218194113.26589-2-kuurtb@gmail.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen --- diff --git a/drivers/platform/x86/dell/dell-wmi-sysman/Makefile b/drivers/platform/x86/dell/dell-wmi-sysman/Makefile index 825fb2fbeea8..0a6df449e222 100644 --- a/drivers/platform/x86/dell/dell-wmi-sysman/Makefile +++ b/drivers/platform/x86/dell/dell-wmi-sysman/Makefile @@ -1,5 +1,5 @@ obj-$(CONFIG_DELL_WMI_SYSMAN) += dell-wmi-sysman.o -dell-wmi-sysman-objs := sysman.o \ +dell-wmi-sysman-y := sysman.o \ enum-attributes.o \ int-attributes.o \ string-attributes.o \