diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-06-12 15:10:51 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-18 13:24:16 -0400 |
commit | 47a9991e806940f400f90d7b9cbcf7c2925e4fce (patch) | |
tree | ed7f9e8955be4ea298fd2f87e196a69817ef3617 /drivers/media/dvb/dvb-usb/cxusb.c | |
parent | 6c08d9290e2fc87b217d0f7c9cd67c9240ad7147 (diff) |
V4L/DVB (5780): Dvb: Remove static dependencies on dvb-pll
This patch removes all static dependencies on the dvb-pll module.
All exported dvb_pll_desc's have been UNexported, and the caller
will reference the individual dvb_pll_desc by it's index in the
pll_list array.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Signed-off-by: Patrick Boettcher <pb@linuxtv.org>
Acked-by: Oliver Endriss <o.endriss@gmx.de>
Acked-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb/dvb-usb/cxusb.c')
-rw-r--r-- | drivers/media/dvb/dvb-usb/cxusb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/dvb/dvb-usb/cxusb.c b/drivers/media/dvb/dvb-usb/cxusb.c index 88aeb2512212..04e31cf7d530 100644 --- a/drivers/media/dvb/dvb-usb/cxusb.c +++ b/drivers/media/dvb/dvb-usb/cxusb.c | |||
@@ -355,34 +355,34 @@ static struct mt352_config cxusb_mt352_config = { | |||
355 | static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap) | 355 | static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap) |
356 | { | 356 | { |
357 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap, | 357 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap, |
358 | &dvb_pll_fmd1216me); | 358 | DVB_PLL_FMD1216ME); |
359 | return 0; | 359 | return 0; |
360 | } | 360 | } |
361 | 361 | ||
362 | static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap) | 362 | static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap) |
363 | { | 363 | { |
364 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, | 364 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, |
365 | NULL, &dvb_pll_thomson_dtt7579); | 365 | NULL, DVB_PLL_THOMSON_DTT7579); |
366 | return 0; | 366 | return 0; |
367 | } | 367 | } |
368 | 368 | ||
369 | static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap) | 369 | static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap) |
370 | { | 370 | { |
371 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, &dvb_pll_lg_z201); | 371 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, DVB_PLL_LG_Z201); |
372 | return 0; | 372 | return 0; |
373 | } | 373 | } |
374 | 374 | ||
375 | static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap) | 375 | static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap) |
376 | { | 376 | { |
377 | dvb_attach(dvb_pll_attach, adap->fe, 0x60, | 377 | dvb_attach(dvb_pll_attach, adap->fe, 0x60, |
378 | NULL, &dvb_pll_thomson_dtt7579); | 378 | NULL, DVB_PLL_THOMSON_DTT7579); |
379 | return 0; | 379 | return 0; |
380 | } | 380 | } |
381 | 381 | ||
382 | static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap) | 382 | static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap) |
383 | { | 383 | { |
384 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap, | 384 | dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap, |
385 | &dvb_pll_lg_tdvs_h06xf); | 385 | DVB_PLL_LG_TDVS_H06XF); |
386 | return 0; | 386 | return 0; |
387 | } | 387 | } |
388 | 388 | ||