aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88
diff options
context:
space:
mode:
authorMichael Krufky <mike@krufky.com>2005-07-27 14:45:57 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-27 19:26:17 -0400
commit0b1cd0c77429083d6ceb379b1d15c6bca165e90b (patch)
tree6db82fb068ec1b25d67d980a844027be1a58da33 /drivers/media/video/cx88
parentd975872c5c94615a12040009cde71c82cddeb1be (diff)
[PATCH] v4l: hybrid dvb: fix warnings with -Wundef
This patch adds a missing #ifdef to saa7134-dvb.c (thanks to Mauro Carvalho Chehab) and changes #if to #ifdef in both files. Signed-off-by: Michael Krufky <mkrufky@m1k.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r--drivers/media/video/cx88/cx88-dvb.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c
index 94efba2d4fe5..08d30f9c2788 100644
--- a/drivers/media/video/cx88/cx88-dvb.c
+++ b/drivers/media/video/cx88/cx88-dvb.c
@@ -38,17 +38,17 @@
38#include "cx88.h" 38#include "cx88.h"
39#include "dvb-pll.h" 39#include "dvb-pll.h"
40 40
41#if CONFIG_DVB_MT352 41#ifdef CONFIG_DVB_MT352
42# include "mt352.h" 42# include "mt352.h"
43# include "mt352_priv.h" 43# include "mt352_priv.h"
44#endif 44#endif
45#if CONFIG_DVB_CX22702 45#ifdef CONFIG_DVB_CX22702
46# include "cx22702.h" 46# include "cx22702.h"
47#endif 47#endif
48#if CONFIG_DVB_OR51132 48#ifdef CONFIG_DVB_OR51132
49# include "or51132.h" 49# include "or51132.h"
50#endif 50#endif
51#if CONFIG_DVB_LGDT3302 51#ifdef CONFIG_DVB_LGDT3302
52# include "lgdt3302.h" 52# include "lgdt3302.h"
53#endif 53#endif
54 54
@@ -107,7 +107,7 @@ static struct videobuf_queue_ops dvb_qops = {
107 107
108/* ------------------------------------------------------------------ */ 108/* ------------------------------------------------------------------ */
109 109
110#if CONFIG_DVB_MT352 110#ifdef CONFIG_DVB_MT352
111static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe) 111static int dvico_fusionhdtv_demod_init(struct dvb_frontend* fe)
112{ 112{
113 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 }; 113 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x39 };
@@ -177,7 +177,7 @@ static struct mt352_config dntv_live_dvbt_config = {
177}; 177};
178#endif 178#endif
179 179
180#if CONFIG_DVB_CX22702 180#ifdef CONFIG_DVB_CX22702
181static struct cx22702_config connexant_refboard_config = { 181static struct cx22702_config connexant_refboard_config = {
182 .demod_address = 0x43, 182 .demod_address = 0x43,
183 .output_mode = CX22702_SERIAL_OUTPUT, 183 .output_mode = CX22702_SERIAL_OUTPUT,
@@ -193,7 +193,7 @@ static struct cx22702_config hauppauge_novat_config = {
193}; 193};
194#endif 194#endif
195 195
196#if CONFIG_DVB_OR51132 196#ifdef CONFIG_DVB_OR51132
197static int or51132_set_ts_param(struct dvb_frontend* fe, 197static int or51132_set_ts_param(struct dvb_frontend* fe,
198 int is_punctured) 198 int is_punctured)
199{ 199{
@@ -210,7 +210,7 @@ static struct or51132_config pchdtv_hd3000 = {
210}; 210};
211#endif 211#endif
212 212
213#if CONFIG_DVB_LGDT3302 213#ifdef CONFIG_DVB_LGDT3302
214static int lgdt3302_pll_set(struct dvb_frontend* fe, 214static int lgdt3302_pll_set(struct dvb_frontend* fe,
215 struct dvb_frontend_parameters* params, 215 struct dvb_frontend_parameters* params,
216 u8* pllbuf) 216 u8* pllbuf)
@@ -261,7 +261,7 @@ static int dvb_register(struct cx8802_dev *dev)
261 261
262 /* init frontend */ 262 /* init frontend */
263 switch (dev->core->board) { 263 switch (dev->core->board) {
264#if CONFIG_DVB_CX22702 264#ifdef CONFIG_DVB_CX22702
265 case CX88_BOARD_HAUPPAUGE_DVB_T1: 265 case CX88_BOARD_HAUPPAUGE_DVB_T1:
266 dev->dvb.frontend = cx22702_attach(&hauppauge_novat_config, 266 dev->dvb.frontend = cx22702_attach(&hauppauge_novat_config,
267 &dev->core->i2c_adap); 267 &dev->core->i2c_adap);
@@ -272,7 +272,7 @@ static int dvb_register(struct cx8802_dev *dev)
272 &dev->core->i2c_adap); 272 &dev->core->i2c_adap);
273 break; 273 break;
274#endif 274#endif
275#if CONFIG_DVB_MT352 275#ifdef CONFIG_DVB_MT352
276 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1: 276 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1:
277 dev->core->pll_addr = 0x61; 277 dev->core->pll_addr = 0x61;
278 dev->core->pll_desc = &dvb_pll_lg_z201; 278 dev->core->pll_desc = &dvb_pll_lg_z201;
@@ -294,13 +294,13 @@ static int dvb_register(struct cx8802_dev *dev)
294 &dev->core->i2c_adap); 294 &dev->core->i2c_adap);
295 break; 295 break;
296#endif 296#endif
297#if CONFIG_DVB_OR51132 297#ifdef CONFIG_DVB_OR51132
298 case CX88_BOARD_PCHDTV_HD3000: 298 case CX88_BOARD_PCHDTV_HD3000:
299 dev->dvb.frontend = or51132_attach(&pchdtv_hd3000, 299 dev->dvb.frontend = or51132_attach(&pchdtv_hd3000,
300 &dev->core->i2c_adap); 300 &dev->core->i2c_adap);
301 break; 301 break;
302#endif 302#endif
303#if CONFIG_DVB_LGDT3302 303#ifdef CONFIG_DVB_LGDT3302
304 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q: 304 case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
305 dev->ts_gen_cntrl = 0x08; 305 dev->ts_gen_cntrl = 0x08;
306 { 306 {