Now that buffered-io.o is not dependent on CONFIG_BLOCK, decouple it from CONFIG_BLOCK in the Makefile so that filesystems that do not have CONFIG_BLOCK dependencies may still use iomap for buffered io. Signed-off-by: Joanne Koong <joannelkoong@xxxxxxxxx> --- fs/iomap/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/iomap/Makefile b/fs/iomap/Makefile index fb7e8a7a3da4..477d78c58807 100644 --- a/fs/iomap/Makefile +++ b/fs/iomap/Makefile @@ -9,9 +9,9 @@ ccflags-y += -I $(src) # needed for trace events obj-$(CONFIG_FS_IOMAP) += iomap.o iomap-y += trace.o \ - iter.o -iomap-$(CONFIG_BLOCK) += buffered-io.o \ - buffered-io-bio.o \ + iter.o \ + buffered-io.o +iomap-$(CONFIG_BLOCK) += buffered-io-bio.o \ direct-io.o \ ioend.o \ fiemap.o \ -- 2.47.1