platform/x86: hp: Use *-y instead of *-objs in Makefile
authorKurt Borja <kuurtb@gmail.com>
Tue, 18 Feb 2025 19:41:10 +0000 (14:41 -0500)
committerIlpo Järvinen <ilpo.jarvinen@linux.intel.com>
Mon, 24 Feb 2025 15:15:04 +0000 (17:15 +0200)
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 <andriy.shevchenko@linux.intel.com>
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20250218194113.26589-4-kuurtb@gmail.com
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
drivers/platform/x86/hp/hp-bioscfg/Makefile

index 67be0d9177530aec8c73925a48c776fa87c5dc52..7d23649b34dc67ab4c7bb65e651d107223e38a61 100644 (file)
@@ -1,6 +1,6 @@
 obj-$(CONFIG_HP_BIOSCFG) := hp-bioscfg.o
 
-hp-bioscfg-objs := bioscfg.o   \
+hp-bioscfg-y := bioscfg.o      \
        biosattr-interface.o    \
        enum-attributes.o       \
        int-attributes.o        \