isofs: Use *-y instead of *-objs in Makefile
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 8 May 2024 15:21:11 +0000 (18:21 +0300)
committerJan Kara <jack@suse.cz>
Thu, 9 May 2024 16:09:57 +0000 (18:09 +0200)
*-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.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20240508152129.1445372-1-andriy.shevchenko@linux.intel.com>

fs/isofs/Makefile

index 6498fd2b0f6073bad2ca098873b2601262d957c7..b25bc542a22bfc0b0137ef26e89033b0cb0e1cca 100644 (file)
@@ -5,7 +5,6 @@
 
 obj-$(CONFIG_ISO9660_FS) += isofs.o
 
-isofs-objs-y                   := namei.o inode.o dir.o util.o rock.o export.o
-isofs-objs-$(CONFIG_JOLIET)    += joliet.o
-isofs-objs-$(CONFIG_ZISOFS)    += compress.o
-isofs-objs                     := $(isofs-objs-y)
+isofs-y                := namei.o inode.o dir.o util.o rock.o export.o
+isofs-$(CONFIG_JOLIET) += joliet.o
+isofs-$(CONFIG_ZISOFS) += compress.o