From: Andy Shevchenko Date: Wed, 21 Aug 2024 15:51:04 +0000 (+0300) Subject: dimlib: use *-y instead of *-objs in Makefile X-Git-Tag: v6.12-rc1~114^2~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb54ea1ee84534cab6a15515c73a0811bdcbc973;p=thirdparty%2Fkernel%2Flinux.git dimlib: use *-y instead of *-objs in Makefile *-objs suffix is reserved rather for (user-space) host programs while usually *-y suffix is used for kernel drivers (although *-objs works for that purpose for now). Let's correct the old usages of *-objs in Makefiles. Link: https://lkml.kernel.org/r/20240821155140.611514-1-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko Acked-by: Florian Fainelli Reviewed-by: Alexander Lobakin Cc: Rasmus Villemoes Cc: Tal Gilboa Signed-off-by: Andrew Morton --- diff --git a/lib/dim/Makefile b/lib/dim/Makefile index c4cc4026c4511..5b9bfaac7ac1f 100644 --- a/lib/dim/Makefile +++ b/lib/dim/Makefile @@ -4,4 +4,4 @@ obj-$(CONFIG_DIMLIB) += dimlib.o -dimlib-objs := dim.o net_dim.o rdma_dim.o +dimlib-y := dim.o net_dim.o rdma_dim.o