diff options
author | Arnd Bergmann | 2016-06-15 17:45:51 +0200 |
---|---|---|
committer | David S. Miller | 2016-06-16 07:06:06 +0200 |
commit | 4a1836701fd59476ee1331379e00a9ab51ba4f61 (patch) | |
tree | 1e2bf47c6b58be57befc4f508bd08d40b346cc93 /drivers/net/fddi | |
parent | tipc: eliminate uninitialized variable warning (diff) | |
download | kernel-qcow2-linux-4a1836701fd59476ee1331379e00a9ab51ba4f61.tar.gz kernel-qcow2-linux-4a1836701fd59476ee1331379e00a9ab51ba4f61.tar.xz kernel-qcow2-linux-4a1836701fd59476ee1331379e00a9ab51ba4f61.zip |
net: skfb: remove obsolete -I cflag
The skfp driver has been moved to drivers/net/fddi/skfp a long time
ago, but we still attempt to include headers from the old location,
which causes a warning when building with W=1:
cc1: error: /git/arm-soc/drivers/net/skfp: No such file or directory [-Werror=missing-include-dirs]
cc1: error: drivers/net/skfp: No such file or directory [-Werror=missing-include-dirs]
Clearly this include directive is not needed any more, so we can
just remove it now.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/fddi')
-rw-r--r-- | drivers/net/fddi/skfp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/fddi/skfp/Makefile b/drivers/net/fddi/skfp/Makefile index b0be0234abf6..a957a1c7e5ba 100644 --- a/drivers/net/fddi/skfp/Makefile +++ b/drivers/net/fddi/skfp/Makefile @@ -17,4 +17,4 @@ skfp-objs := skfddi.o hwmtm.o fplustm.o smt.o cfm.o \ # projects. To keep the source common for all those drivers (and # thus simplify fixes to it), please do not clean it up! -ccflags-y := -Idrivers/net/skfp -DPCI -DMEM_MAPPED_IO -Wno-strict-prototypes +ccflags-y := -DPCI -DMEM_MAPPED_IO -Wno-strict-prototypes |