diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-08-09 13:21:58 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:36:49 -0400 |
commit | 2e06d2ff548fc6333f5b34d188646ded327187c3 (patch) | |
tree | 839dc5732670d9b91ec6f3ded1f982d569076d6d | |
parent | a2dc86b69dcbcbeb498c5f5169f09f4bd207de5f (diff) |
V4L/DVB (8656): fix DVB_FE_CUSTOMISE for DVB_DIB7000P and DVB_TUNER_DIB0070 with dvb-usb-cxusb
Allow dvb-usb-cxusb to be built without dib7000p or dib0070 selected
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/dvb-usb/Kconfig | 4 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/dib0070.h | 8 | ||||
-rw-r--r-- | drivers/media/dvb/frontends/dib7000p.h | 41 |
3 files changed, 45 insertions, 8 deletions
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index df9932368bba..8a54cb48322f 100644 --- a/drivers/media/dvb/dvb-usb/Kconfig +++ b/drivers/media/dvb/dvb-usb/Kconfig | |||
@@ -108,8 +108,8 @@ config DVB_USB_CXUSB | |||
108 | select MEDIA_TUNER_SIMPLE if !DVB_FE_CUSTOMISE | 108 | select MEDIA_TUNER_SIMPLE if !DVB_FE_CUSTOMISE |
109 | select MEDIA_TUNER_XC2028 if !DVB_FE_CUSTOMISE | 109 | select MEDIA_TUNER_XC2028 if !DVB_FE_CUSTOMISE |
110 | select MEDIA_TUNER_MXL5005S if !DVB_FE_CUSTOMISE | 110 | select MEDIA_TUNER_MXL5005S if !DVB_FE_CUSTOMISE |
111 | select DVB_DIB7000P | 111 | select DVB_DIB7000P if !DVB_FE_CUSTOMISE |
112 | select DVB_TUNER_DIB0070 | 112 | select DVB_TUNER_DIB0070 if !DVB_FE_CUSTOMISE |
113 | help | 113 | help |
114 | Say Y here to support the Conexant USB2.0 hybrid reference design. | 114 | Say Y here to support the Conexant USB2.0 hybrid reference design. |
115 | Currently, only DVB and ATSC modes are supported, analog mode | 115 | Currently, only DVB and ATSC modes are supported, analog mode |
diff --git a/drivers/media/dvb/frontends/dib0070.h b/drivers/media/dvb/frontends/dib0070.h index 3eedfdf505bc..21f2c5161af4 100644 --- a/drivers/media/dvb/frontends/dib0070.h +++ b/drivers/media/dvb/frontends/dib0070.h | |||
@@ -41,6 +41,7 @@ struct dib0070_config { | |||
41 | extern struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, | 41 | extern struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, |
42 | struct i2c_adapter *i2c, | 42 | struct i2c_adapter *i2c, |
43 | struct dib0070_config *cfg); | 43 | struct dib0070_config *cfg); |
44 | extern u16 dib0070_wbd_offset(struct dvb_frontend *); | ||
44 | #else | 45 | #else |
45 | static inline struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, | 46 | static inline struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, |
46 | struct i2c_adapter *i2c, | 47 | struct i2c_adapter *i2c, |
@@ -49,9 +50,14 @@ static inline struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, | |||
49 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | 50 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
50 | return NULL; | 51 | return NULL; |
51 | } | 52 | } |
53 | |||
54 | static inline u16 dib0070_wbd_offset(struct dvb_frontend *fe) | ||
55 | { | ||
56 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
57 | return -ENODEV; | ||
58 | } | ||
52 | #endif | 59 | #endif |
53 | 60 | ||
54 | extern void dib0070_ctrl_agc_filter(struct dvb_frontend *, uint8_t open); | 61 | extern void dib0070_ctrl_agc_filter(struct dvb_frontend *, uint8_t open); |
55 | extern u16 dib0070_wbd_offset(struct dvb_frontend *); | ||
56 | 62 | ||
57 | #endif | 63 | #endif |
diff --git a/drivers/media/dvb/frontends/dib7000p.h b/drivers/media/dvb/frontends/dib7000p.h index 07c4d12ed5b7..3e8126857127 100644 --- a/drivers/media/dvb/frontends/dib7000p.h +++ b/drivers/media/dvb/frontends/dib7000p.h | |||
@@ -41,6 +41,14 @@ struct dib7000p_config { | |||
41 | extern struct dvb_frontend *dib7000p_attach(struct i2c_adapter *i2c_adap, | 41 | extern struct dvb_frontend *dib7000p_attach(struct i2c_adapter *i2c_adap, |
42 | u8 i2c_addr, | 42 | u8 i2c_addr, |
43 | struct dib7000p_config *cfg); | 43 | struct dib7000p_config *cfg); |
44 | extern struct i2c_adapter *dib7000p_get_i2c_master(struct dvb_frontend *, | ||
45 | enum dibx000_i2c_interface, | ||
46 | int); | ||
47 | extern int dib7000p_i2c_enumeration(struct i2c_adapter *i2c, | ||
48 | int no_of_demods, u8 default_addr, | ||
49 | struct dib7000p_config cfg[]); | ||
50 | extern int dib7000p_set_gpio(struct dvb_frontend *, u8 num, u8 dir, u8 val); | ||
51 | extern int dib7000p_set_wbd_ref(struct dvb_frontend *, u16 value); | ||
44 | #else | 52 | #else |
45 | static inline struct dvb_frontend *dib7000p_attach(struct i2c_adapter *i2c_adap, | 53 | static inline struct dvb_frontend *dib7000p_attach(struct i2c_adapter *i2c_adap, |
46 | u8 i2c_addr, | 54 | u8 i2c_addr, |
@@ -49,13 +57,36 @@ static inline struct dvb_frontend *dib7000p_attach(struct i2c_adapter *i2c_adap, | |||
49 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | 57 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
50 | return NULL; | 58 | return NULL; |
51 | } | 59 | } |
52 | #endif | ||
53 | 60 | ||
54 | extern int dib7000p_i2c_enumeration(struct i2c_adapter *i2c, int no_of_demods, u8 default_addr, struct dib7000p_config cfg[]); | 61 | static inline |
62 | struct i2c_adapter *dib7000p_get_i2c_master(struct dvb_frontend *fe, | ||
63 | enum dibx000_i2c_interface i, int x) | ||
64 | { | ||
65 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
66 | return NULL; | ||
67 | } | ||
68 | |||
69 | extern int dib7000p_i2c_enumeration(struct i2c_adapter *i2c, | ||
70 | int no_of_demods, u8 default_addr, | ||
71 | struct dib7000p_config cfg[]) | ||
72 | { | ||
73 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
74 | return -ENODEV; | ||
75 | } | ||
76 | |||
77 | extern int dib7000p_set_gpio(struct dvb_frontend *fe, u8 num, u8 dir, u8 val) | ||
78 | { | ||
79 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
80 | return -ENODEV; | ||
81 | } | ||
82 | |||
83 | extern int dib7000p_set_wbd_ref(struct dvb_frontend *fe, u16 value) | ||
84 | { | ||
85 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
86 | return -ENODEV; | ||
87 | } | ||
88 | #endif | ||
55 | 89 | ||
56 | extern struct i2c_adapter * dib7000p_get_i2c_master(struct dvb_frontend *, enum dibx000_i2c_interface, int); | ||
57 | extern int dib7000pc_detection(struct i2c_adapter *i2c_adap); | 90 | extern int dib7000pc_detection(struct i2c_adapter *i2c_adap); |
58 | extern int dib7000p_set_gpio(struct dvb_frontend *, u8 num, u8 dir, u8 val); | ||
59 | extern int dib7000p_set_wbd_ref(struct dvb_frontend *, u16 value); | ||
60 | 91 | ||
61 | #endif | 92 | #endif |