diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-13 02:22:14 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-17 22:49:56 -0400 |
commit | cc966c92c1d40e53074a3aed1d15b4a306161605 (patch) | |
tree | 1d936da5918cb86586cf87296b1f9d122afdd0f5 | |
parent | 986a13769c4bd00f1b894b08af2f1068f88d3d5e (diff) |
media: remove unneeded header search paths
I was able to build without these extra header search paths.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | drivers/media/dvb-frontends/cxd2880/Makefile | 2 | ||||
-rw-r--r-- | drivers/media/pci/bt8xx/Makefile | 1 | ||||
-rw-r--r-- | drivers/media/platform/sti/c8sectpfe/Makefile | 1 | ||||
-rw-r--r-- | drivers/media/radio/Makefile | 2 | ||||
-rw-r--r-- | drivers/media/spi/Makefile | 2 | ||||
-rw-r--r-- | drivers/media/usb/cx231xx/Makefile | 1 | ||||
-rw-r--r-- | drivers/media/usb/usbvision/Makefile | 2 |
7 files changed, 0 insertions, 11 deletions
diff --git a/drivers/media/dvb-frontends/cxd2880/Makefile b/drivers/media/dvb-frontends/cxd2880/Makefile index c6baa4caba19..646598b556d5 100644 --- a/drivers/media/dvb-frontends/cxd2880/Makefile +++ b/drivers/media/dvb-frontends/cxd2880/Makefile | |||
@@ -14,5 +14,3 @@ cxd2880-objs := cxd2880_common.o \ | |||
14 | cxd2880_top.o | 14 | cxd2880_top.o |
15 | 15 | ||
16 | obj-$(CONFIG_DVB_CXD2880) += cxd2880.o | 16 | obj-$(CONFIG_DVB_CXD2880) += cxd2880.o |
17 | |||
18 | ccflags-y += -Idrivers/media/dvb-frontends | ||
diff --git a/drivers/media/pci/bt8xx/Makefile b/drivers/media/pci/bt8xx/Makefile index 7f1c3beb1bbc..0b5032c8a9c0 100644 --- a/drivers/media/pci/bt8xx/Makefile +++ b/drivers/media/pci/bt8xx/Makefile | |||
@@ -7,5 +7,4 @@ obj-$(CONFIG_VIDEO_BT848) += bttv.o | |||
7 | obj-$(CONFIG_DVB_BT8XX) += bt878.o dvb-bt8xx.o dst.o dst_ca.o | 7 | obj-$(CONFIG_DVB_BT8XX) += bt878.o dvb-bt8xx.o dst.o dst_ca.o |
8 | 8 | ||
9 | ccflags-y += -Idrivers/media/dvb-frontends | 9 | ccflags-y += -Idrivers/media/dvb-frontends |
10 | ccflags-y += -Idrivers/media/common | ||
11 | ccflags-y += -Idrivers/media/tuners | 10 | ccflags-y += -Idrivers/media/tuners |
diff --git a/drivers/media/platform/sti/c8sectpfe/Makefile b/drivers/media/platform/sti/c8sectpfe/Makefile index 34d69472b6f0..4bf0c6bf20e1 100644 --- a/drivers/media/platform/sti/c8sectpfe/Makefile +++ b/drivers/media/platform/sti/c8sectpfe/Makefile | |||
@@ -4,6 +4,5 @@ c8sectpfe-y += c8sectpfe-core.o c8sectpfe-common.o c8sectpfe-dvb.o \ | |||
4 | 4 | ||
5 | obj-$(CONFIG_DVB_C8SECTPFE) += c8sectpfe.o | 5 | obj-$(CONFIG_DVB_C8SECTPFE) += c8sectpfe.o |
6 | 6 | ||
7 | ccflags-y += -Idrivers/media/common | ||
8 | ccflags-y += -Idrivers/media/dvb-frontends/ | 7 | ccflags-y += -Idrivers/media/dvb-frontends/ |
9 | ccflags-y += -Idrivers/media/tuners/ | 8 | ccflags-y += -Idrivers/media/tuners/ |
diff --git a/drivers/media/radio/Makefile b/drivers/media/radio/Makefile index 37e6e8255b57..53c7ae135460 100644 --- a/drivers/media/radio/Makefile +++ b/drivers/media/radio/Makefile | |||
@@ -36,5 +36,3 @@ obj-$(CONFIG_RADIO_TEA575X) += tea575x.o | |||
36 | obj-$(CONFIG_USB_RAREMONO) += radio-raremono.o | 36 | obj-$(CONFIG_USB_RAREMONO) += radio-raremono.o |
37 | 37 | ||
38 | shark2-objs := radio-shark2.o radio-tea5777.o | 38 | shark2-objs := radio-shark2.o radio-tea5777.o |
39 | |||
40 | ccflags-y += -Isound | ||
diff --git a/drivers/media/spi/Makefile b/drivers/media/spi/Makefile index 9e536777a330..c254e2a70ec5 100644 --- a/drivers/media/spi/Makefile +++ b/drivers/media/spi/Makefile | |||
@@ -1,6 +1,4 @@ | |||
1 | obj-$(CONFIG_VIDEO_GS1662) += gs1662.o | 1 | obj-$(CONFIG_VIDEO_GS1662) += gs1662.o |
2 | obj-$(CONFIG_CXD2880_SPI_DRV) += cxd2880-spi.o | 2 | obj-$(CONFIG_CXD2880_SPI_DRV) += cxd2880-spi.o |
3 | 3 | ||
4 | ccflags-y += -Idrivers/media/dvb-core | ||
5 | ccflags-y += -Idrivers/media/dvb-frontends | ||
6 | ccflags-y += -Idrivers/media/dvb-frontends/cxd2880 | 4 | ccflags-y += -Idrivers/media/dvb-frontends/cxd2880 |
diff --git a/drivers/media/usb/cx231xx/Makefile b/drivers/media/usb/cx231xx/Makefile index c023d97407de..af824fd80366 100644 --- a/drivers/media/usb/cx231xx/Makefile +++ b/drivers/media/usb/cx231xx/Makefile | |||
@@ -11,4 +11,3 @@ obj-$(CONFIG_VIDEO_CX231XX_DVB) += cx231xx-dvb.o | |||
11 | 11 | ||
12 | ccflags-y += -Idrivers/media/tuners | 12 | ccflags-y += -Idrivers/media/tuners |
13 | ccflags-y += -Idrivers/media/dvb-frontends | 13 | ccflags-y += -Idrivers/media/dvb-frontends |
14 | ccflags-y += -Idrivers/media/usb/dvb-usb | ||
diff --git a/drivers/media/usb/usbvision/Makefile b/drivers/media/usb/usbvision/Makefile index 494d030b4979..e8e5eda08b6f 100644 --- a/drivers/media/usb/usbvision/Makefile +++ b/drivers/media/usb/usbvision/Makefile | |||
@@ -1,5 +1,3 @@ | |||
1 | usbvision-objs := usbvision-core.o usbvision-video.o usbvision-i2c.o usbvision-cards.o | 1 | usbvision-objs := usbvision-core.o usbvision-video.o usbvision-i2c.o usbvision-cards.o |
2 | 2 | ||
3 | obj-$(CONFIG_VIDEO_USBVISION) += usbvision.o | 3 | obj-$(CONFIG_VIDEO_USBVISION) += usbvision.o |
4 | |||
5 | ccflags-y += -Idrivers/media/tuners | ||