Skip to content

Commit c86e269

Browse files
kuu-rtij-intel
authored andcommitted
platform/x86: dell: 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 <[email protected]> Signed-off-by: Kurt Borja <[email protected]> Reviewed-by: Andy Shevchenko <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Ilpo Järvinen <[email protected]> Signed-off-by: Ilpo Järvinen <[email protected]>
1 parent d497c47 commit c86e269

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/platform/x86/dell/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66

77
obj-$(CONFIG_ALIENWARE_WMI) += alienware-wmi.o
8-
alienware-wmi-objs := alienware-wmi-base.o
8+
alienware-wmi-y := alienware-wmi-base.o
99
alienware-wmi-$(CONFIG_ALIENWARE_WMI_LEGACY) += alienware-wmi-legacy.o
1010
alienware-wmi-$(CONFIG_ALIENWARE_WMI_WMAX) += alienware-wmi-wmax.o
1111
obj-$(CONFIG_DCDBAS) += dcdbas.o
@@ -14,14 +14,14 @@ obj-$(CONFIG_DELL_RBTN) += dell-rbtn.o
1414
obj-$(CONFIG_DELL_RBU) += dell_rbu.o
1515
obj-$(CONFIG_DELL_PC) += dell-pc.o
1616
obj-$(CONFIG_DELL_SMBIOS) += dell-smbios.o
17-
dell-smbios-objs := dell-smbios-base.o
17+
dell-smbios-y := dell-smbios-base.o
1818
dell-smbios-$(CONFIG_DELL_SMBIOS_WMI) += dell-smbios-wmi.o
1919
dell-smbios-$(CONFIG_DELL_SMBIOS_SMM) += dell-smbios-smm.o
2020
obj-$(CONFIG_DELL_SMO8800) += dell-smo8800.o
2121
obj-$(CONFIG_DELL_SMO8800) += dell-lis3lv02d.o
2222
obj-$(CONFIG_DELL_UART_BACKLIGHT) += dell-uart-backlight.o
2323
obj-$(CONFIG_DELL_WMI) += dell-wmi.o
24-
dell-wmi-objs := dell-wmi-base.o
24+
dell-wmi-y := dell-wmi-base.o
2525
dell-wmi-$(CONFIG_DELL_WMI_PRIVACY) += dell-wmi-privacy.o
2626
obj-$(CONFIG_DELL_WMI_AIO) += dell-wmi-aio.o
2727
obj-$(CONFIG_DELL_WMI_DESCRIPTOR) += dell-wmi-descriptor.o

0 commit comments

Comments
 (0)