Skip to content

Commit fb54ea1

Browse files
andy-shevakpm00
authored andcommitted
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/[email protected] Signed-off-by: Andy Shevchenko <[email protected]> Acked-by: Florian Fainelli <[email protected]> Reviewed-by: Alexander Lobakin <[email protected]> Cc: Rasmus Villemoes <[email protected]> Cc: Tal Gilboa <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent d18e423 commit fb54ea1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dim/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
obj-$(CONFIG_DIMLIB) += dimlib.o
66

7-
dimlib-objs := dim.o net_dim.o rdma_dim.o
7+
dimlib-y := dim.o net_dim.o rdma_dim.o

0 commit comments

Comments
 (0)