aboutsummaryrefslogtreecommitdiff
path: root/fs/isofs
diff options
context:
space:
mode:
authorGravatar Andy Shevchenko <andriy.shevchenko@linux.intel.com> 2024-05-08 18:21:11 +0300
committerGravatar Jan Kara <jack@suse.cz> 2024-05-09 18:09:57 +0200
commit1dd719a959794467c2a75b3813df86cc6f55f5e3 (patch)
treee77c1bf314f768a2351187d928467da357694560 /fs/isofs
parentext2: Remove LEGACY_DIRECT_IO dependency (diff)
downloadlinux-1dd719a959794467c2a75b3813df86cc6f55f5e3.tar.gz
linux-1dd719a959794467c2a75b3813df86cc6f55f5e3.tar.bz2
linux-1dd719a959794467c2a75b3813df86cc6f55f5e3.zip
isofs: 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. 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>
Diffstat (limited to 'fs/isofs')
-rw-r--r--fs/isofs/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/isofs/Makefile b/fs/isofs/Makefile
index 6498fd2b0f60..b25bc542a22b 100644
--- a/fs/isofs/Makefile
+++ b/fs/isofs/Makefile
@@ -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