mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
0ce38c5f92
Detected by:
$ ./scripts/spdxcheck.py
fs/iomap/Makefile: 1:27 Invalid License ID: GPL-2.0-or-newer
Fixes: 1c230208f5
("iomap: start moving code to fs/iomap/")
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16 lines
272 B
Makefile
16 lines
272 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Copyright (c) 2019 Oracle.
|
|
# All Rights Reserved.
|
|
#
|
|
obj-$(CONFIG_FS_IOMAP) += iomap.o
|
|
|
|
iomap-y += \
|
|
apply.o \
|
|
buffered-io.o \
|
|
direct-io.o \
|
|
fiemap.o \
|
|
seek.o
|
|
|
|
iomap-$(CONFIG_SWAP) += swapfile.o
|