2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-objs += dvb-usb-firmware.o dvb-usb-init.o dvb-usb-urb.o dvb-usb-i2c.o
|
|
|
|
dvb-usb-objs += dvb-usb-dvb.o dvb-usb-remote.o usb-urb.o
|
2005-06-24 13:02:35 +08:00
|
|
|
obj-$(CONFIG_DVB_USB) += dvb-usb.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-vp7045-objs := vp7045.o vp7045-fe.o
|
2005-06-24 13:02:35 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_VP7045) += dvb-usb-vp7045.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-vp702x-objs := vp702x.o vp702x-fe.o
|
2005-09-10 04:02:41 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_VP702X) += dvb-usb-vp702x.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-gp8psk-objs := gp8psk.o gp8psk-fe.o
|
2006-05-15 00:23:56 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_GP8PSK) += dvb-usb-gp8psk.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-dtt200u-objs := dtt200u.o dtt200u-fe.o
|
2005-06-24 13:02:35 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_DTT200U) += dvb-usb-dtt200u.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-dibusb-common-objs := dibusb-common.o
|
2005-06-24 13:02:35 +08:00
|
|
|
|
[media] dvb-usb: split out common parts of dibusb
Tha ARM randconfig builds came up with another rare build failure
for the dib3000mc driver, when dvb-usb-dibusb-mb is built-in and
dib3000mc is a loadable module:
ERROR: "dibusb_dib3000mc_frontend_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
ERROR: "dibusb_dib3000mc_tuner_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
Apparently this used to be a valid configuration (build-time, not
run-time), but broke as part of a cleanup.
I tried reverting the cleanup, but saw that the code was still wrong
then. This tries to fix the code properly, by moving the problematic
functions into a new file that now is built as a loadable module or
built-in, whichever is correct for a particular configuration. It fixes
the regression as well as the runtime problem that already existed.
The new module dependency chain is now:
dvb-usb-{dibusb_mc,a800,dib0700,umt-010,gp8psk} dvb-usb-dibusb-mb
| | | |
dvb-usb-dibusb-mc-common | ___________| |
| | | | |
dib3000mc (frontend) | | | dib3000mb (frontend)
| | |
| | |
dvb-usb-dibusb-common
I have also checked the two other files that were changed in the original
cleanup, and found them to be correct in either version, so I do not
touch that part.
As this is a rather obscure bug, there is no need for backports.
Fixes: 028c70ff42783 ("[media] dvb-usb/dvb-usb-v2: use IS_ENABLED")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-07-19 23:14:34 +08:00
|
|
|
dvb-usb-dibusb-mc-common-objs := dibusb-mc-common.o
|
|
|
|
obj-$(CONFIG_DVB_USB_DIB3000MC) += dvb-usb-dibusb-common.o dvb-usb-dibusb-mc-common.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-a800-objs := a800.o
|
[media] dvb-usb: split out common parts of dibusb
Tha ARM randconfig builds came up with another rare build failure
for the dib3000mc driver, when dvb-usb-dibusb-mb is built-in and
dib3000mc is a loadable module:
ERROR: "dibusb_dib3000mc_frontend_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
ERROR: "dibusb_dib3000mc_tuner_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
Apparently this used to be a valid configuration (build-time, not
run-time), but broke as part of a cleanup.
I tried reverting the cleanup, but saw that the code was still wrong
then. This tries to fix the code properly, by moving the problematic
functions into a new file that now is built as a loadable module or
built-in, whichever is correct for a particular configuration. It fixes
the regression as well as the runtime problem that already existed.
The new module dependency chain is now:
dvb-usb-{dibusb_mc,a800,dib0700,umt-010,gp8psk} dvb-usb-dibusb-mb
| | | |
dvb-usb-dibusb-mc-common | ___________| |
| | | | |
dib3000mc (frontend) | | | dib3000mb (frontend)
| | |
| | |
dvb-usb-dibusb-common
I have also checked the two other files that were changed in the original
cleanup, and found them to be correct in either version, so I do not
touch that part.
As this is a rather obscure bug, there is no need for backports.
Fixes: 028c70ff42783 ("[media] dvb-usb/dvb-usb-v2: use IS_ENABLED")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-07-19 23:14:34 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_A800) += dvb-usb-a800.o
|
2005-06-24 13:02:35 +08:00
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-dibusb-mb-objs := dibusb-mb.o
|
2005-06-24 13:02:35 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_DIBUSB_MB) += dvb-usb-dibusb-common.o dvb-usb-dibusb-mb.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-dibusb-mc-objs := dibusb-mc.o
|
[media] dvb-usb: split out common parts of dibusb
Tha ARM randconfig builds came up with another rare build failure
for the dib3000mc driver, when dvb-usb-dibusb-mb is built-in and
dib3000mc is a loadable module:
ERROR: "dibusb_dib3000mc_frontend_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
ERROR: "dibusb_dib3000mc_tuner_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
Apparently this used to be a valid configuration (build-time, not
run-time), but broke as part of a cleanup.
I tried reverting the cleanup, but saw that the code was still wrong
then. This tries to fix the code properly, by moving the problematic
functions into a new file that now is built as a loadable module or
built-in, whichever is correct for a particular configuration. It fixes
the regression as well as the runtime problem that already existed.
The new module dependency chain is now:
dvb-usb-{dibusb_mc,a800,dib0700,umt-010,gp8psk} dvb-usb-dibusb-mb
| | | |
dvb-usb-dibusb-mc-common | ___________| |
| | | | |
dib3000mc (frontend) | | | dib3000mb (frontend)
| | |
| | |
dvb-usb-dibusb-common
I have also checked the two other files that were changed in the original
cleanup, and found them to be correct in either version, so I do not
touch that part.
As this is a rather obscure bug, there is no need for backports.
Fixes: 028c70ff42783 ("[media] dvb-usb/dvb-usb-v2: use IS_ENABLED")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-07-19 23:14:34 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_DIBUSB_MC) += dvb-usb-dibusb-mc.o
|
2005-06-24 13:02:35 +08:00
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-nova-t-usb2-objs := nova-t-usb2.o
|
[media] dvb-usb: split out common parts of dibusb
Tha ARM randconfig builds came up with another rare build failure
for the dib3000mc driver, when dvb-usb-dibusb-mb is built-in and
dib3000mc is a loadable module:
ERROR: "dibusb_dib3000mc_frontend_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
ERROR: "dibusb_dib3000mc_tuner_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
Apparently this used to be a valid configuration (build-time, not
run-time), but broke as part of a cleanup.
I tried reverting the cleanup, but saw that the code was still wrong
then. This tries to fix the code properly, by moving the problematic
functions into a new file that now is built as a loadable module or
built-in, whichever is correct for a particular configuration. It fixes
the regression as well as the runtime problem that already existed.
The new module dependency chain is now:
dvb-usb-{dibusb_mc,a800,dib0700,umt-010,gp8psk} dvb-usb-dibusb-mb
| | | |
dvb-usb-dibusb-mc-common | ___________| |
| | | | |
dib3000mc (frontend) | | | dib3000mb (frontend)
| | |
| | |
dvb-usb-dibusb-common
I have also checked the two other files that were changed in the original
cleanup, and found them to be correct in either version, so I do not
touch that part.
As this is a rather obscure bug, there is no need for backports.
Fixes: 028c70ff42783 ("[media] dvb-usb/dvb-usb-v2: use IS_ENABLED")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-07-19 23:14:34 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_NOVA_T_USB2) += dvb-usb-nova-t-usb2.o
|
2005-06-24 13:02:35 +08:00
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-umt-010-objs := umt-010.o
|
[media] dvb-usb: split out common parts of dibusb
Tha ARM randconfig builds came up with another rare build failure
for the dib3000mc driver, when dvb-usb-dibusb-mb is built-in and
dib3000mc is a loadable module:
ERROR: "dibusb_dib3000mc_frontend_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
ERROR: "dibusb_dib3000mc_tuner_attach" [drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko] undefined!
Apparently this used to be a valid configuration (build-time, not
run-time), but broke as part of a cleanup.
I tried reverting the cleanup, but saw that the code was still wrong
then. This tries to fix the code properly, by moving the problematic
functions into a new file that now is built as a loadable module or
built-in, whichever is correct for a particular configuration. It fixes
the regression as well as the runtime problem that already existed.
The new module dependency chain is now:
dvb-usb-{dibusb_mc,a800,dib0700,umt-010,gp8psk} dvb-usb-dibusb-mb
| | | |
dvb-usb-dibusb-mc-common | ___________| |
| | | | |
dib3000mc (frontend) | | | dib3000mb (frontend)
| | |
| | |
dvb-usb-dibusb-common
I have also checked the two other files that were changed in the original
cleanup, and found them to be correct in either version, so I do not
touch that part.
As this is a rather obscure bug, there is no need for backports.
Fixes: 028c70ff42783 ("[media] dvb-usb/dvb-usb-v2: use IS_ENABLED")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
2016-07-19 23:14:34 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_UMT_010) += dvb-usb-umt-010.o
|
2005-06-24 13:02:35 +08:00
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-m920x-objs := m920x.o
|
2006-09-24 07:01:29 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_M920X) += dvb-usb-m920x.o
|
2006-09-24 07:00:41 +08:00
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-digitv-objs := digitv.o
|
2005-06-24 13:02:35 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_DIGITV) += dvb-usb-digitv.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-cxusb-objs := cxusb.o
|
2005-07-08 08:58:10 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_CXUSB) += dvb-usb-cxusb.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-ttusb2-objs := ttusb2.o
|
2006-12-03 07:16:04 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_TTUSB2) += dvb-usb-ttusb2.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-dib0700-objs := dib0700_core.o dib0700_devices.o
|
2006-09-19 23:51:33 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_DIB0700) += dvb-usb-dib0700.o
|
2006-09-30 17:53:48 +08:00
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-opera-objs := opera1.o
|
2007-04-19 22:26:47 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_OPERA1) += dvb-usb-opera.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-af9005-objs := af9005.o af9005-fe.o
|
2007-05-08 02:19:32 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_AF9005) += dvb-usb-af9005.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-af9005-remote-objs := af9005-remote.o
|
2007-05-08 02:19:32 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_AF9005_REMOTE) += dvb-usb-af9005-remote.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-pctv452e-objs := pctv452e.o
|
2011-09-24 05:33:50 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_PCTV452E) += dvb-usb-pctv452e.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-dw2102-objs := dw2102.o
|
2008-07-20 19:05:50 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_DW2102) += dvb-usb-dw2102.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-dtv5100-objs := dtv5100.o
|
2008-08-12 00:12:19 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_DTV5100) += dvb-usb-dtv5100.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-cinergyT2-objs := cinergyT2-core.o cinergyT2-fe.o
|
2008-09-19 11:48:31 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_CINERGY_T2) += dvb-usb-cinergyT2.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-friio-objs := friio.o friio-fe.o
|
2009-08-25 13:39:51 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_FRIIO) += dvb-usb-friio.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-az6027-objs := az6027.o
|
2010-02-15 02:03:39 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_AZ6027) += dvb-usb-az6027.o
|
|
|
|
|
2012-08-17 03:57:21 +08:00
|
|
|
dvb-usb-technisat-usb2-objs := technisat-usb2.o
|
2010-11-01 03:24:19 +08:00
|
|
|
obj-$(CONFIG_DVB_USB_TECHNISAT_USB2) += dvb-usb-technisat-usb2.o
|
|
|
|
|
2012-06-15 03:35:53 +08:00
|
|
|
ccflags-y += -I$(srctree)/drivers/media/dvb-core
|
2012-08-14 10:13:41 +08:00
|
|
|
ccflags-y += -I$(srctree)/drivers/media/dvb-frontends/
|
2007-12-08 20:34:37 +08:00
|
|
|
# due to tuner-xc3028
|
2012-06-15 03:35:59 +08:00
|
|
|
ccflags-y += -I$(srctree)/drivers/media/tuners
|
2012-06-15 03:35:57 +08:00
|
|
|
ccflags-y += -I$(srctree)/drivers/media/pci/ttpci
|