diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-01-05 01:37:10 +0900 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-01-10 10:58:30 +0100 |
commit | 47f6e54c53c5235137ffef50aeaa2c899b3a2ad8 (patch) | |
tree | cc5e7f49b710e20fa1af620653ba78847388c4e2 | |
parent | 821f7ce79fd1ef2bf96a1b93521d8800abd24a1f (diff) |
staging: rts5208: remove unneeded header include path
A header include path without $(srctree)/ is suspicous because it does
not work with O= builds.
I can build drivers/staging/rts5208/ without this include path.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Link: https://lore.kernel.org/r/20200104163710.21582-1-masahiroy@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/rts5208/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/rts5208/Makefile b/drivers/staging/rts5208/Makefile index 6a934c41c738..3c9e9797d3d9 100644 --- a/drivers/staging/rts5208/Makefile +++ b/drivers/staging/rts5208/Makefile @@ -1,7 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 obj-$(CONFIG_RTS5208) := rts5208.o -ccflags-y := -Idrivers/scsi - rts5208-y := rtsx.o rtsx_chip.o rtsx_transport.o rtsx_scsi.o \ rtsx_card.o general.o sd.o xd.o ms.o spi.o |