From: Kurt Borja Date: Tue, 18 Feb 2025 19:41:11 +0000 (-0500) Subject: platform/x86: intel: Use *-y instead of *-objs in Makefile X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=677fb7b0699dde2609d93eb57863c8d493e673ee;p=users%2Fwilly%2Flinux.git platform/x86: intel: 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: Jithu Joseph Reviewed-by: Andy Shevchenko Link: https://lore.kernel.org/r/20250218194113.26589-5-kuurtb@gmail.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen --- diff --git a/drivers/platform/x86/intel/ifs/Makefile b/drivers/platform/x86/intel/ifs/Makefile index 30f035ef5581..c3e417bce9b6 100644 --- a/drivers/platform/x86/intel/ifs/Makefile +++ b/drivers/platform/x86/intel/ifs/Makefile @@ -1,3 +1,3 @@ obj-$(CONFIG_INTEL_IFS) += intel_ifs.o -intel_ifs-objs := core.o load.o runtest.o sysfs.o +intel_ifs-y := core.o load.o runtest.o sysfs.o