aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/usb/dvb-usb-v2
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2012-09-11 21:27:04 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-09-23 16:31:57 -0400
commit832cc7cdfb8ba78e03cf5c8c0ad9701ed0e20fb6 (patch)
treea4c64c9fdf4096557ead4e655c1eb153cc555b61 /drivers/media/usb/dvb-usb-v2
parentc2d246d1f0302fb4b390c06b73ca4f0ec6553bc6 (diff)
[media] rtl2832: separate tuner specific init from general
It is first step closer to support multiple tuners. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/usb/dvb-usb-v2')
-rw-r--r--drivers/media/usb/dvb-usb-v2/rtl28xxu.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/usb/dvb-usb-v2/rtl28xxu.h b/drivers/media/usb/dvb-usb-v2/rtl28xxu.h
index 035a9c890ce5..c6c8a4fe0b32 100644
--- a/drivers/media/usb/dvb-usb-v2/rtl28xxu.h
+++ b/drivers/media/usb/dvb-usb-v2/rtl28xxu.h
@@ -63,14 +63,15 @@ enum rtl28xxu_chip_id {
63 CHIP_ID_RTL2832U, 63 CHIP_ID_RTL2832U,
64}; 64};
65 65
66/* XXX: Hack. This must be keep sync with rtl2832 demod driver. */
66enum rtl28xxu_tuner { 67enum rtl28xxu_tuner {
67 TUNER_NONE, 68 TUNER_NONE,
68 69
69 TUNER_RTL2830_QT1010, 70 TUNER_RTL2830_QT1010 = 0x10,
70 TUNER_RTL2830_MT2060, 71 TUNER_RTL2830_MT2060,
71 TUNER_RTL2830_MXL5005S, 72 TUNER_RTL2830_MXL5005S,
72 73
73 TUNER_RTL2832_MT2266, 74 TUNER_RTL2832_MT2266 = 0x20,
74 TUNER_RTL2832_FC2580, 75 TUNER_RTL2832_FC2580,
75 TUNER_RTL2832_MT2063, 76 TUNER_RTL2832_MT2063,
76 TUNER_RTL2832_MAX3543, 77 TUNER_RTL2832_MAX3543,