diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-05-08 17:23:40 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-18 13:23:30 -0400 |
commit | 7b68814d797ae29095b7651e172c28a31ee37fda (patch) | |
tree | 731f90f9ea419d469b0a62e1637e54d6293c1862 /drivers | |
parent | b7754d74d20b701603eacf587a92ec6f71a302e1 (diff) |
V4L/DVB (5637): Cx88: kill core->pll_desc and core->pll_addr
Now that dvb-pll is being used properly in all cx88-dvb instances,
the cx88 driver no longer needs to store pll_desc nor pll_addr.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/cx88/cx88-dvb.c | 4 | ||||
-rw-r--r-- | drivers/media/video/cx88/cx88.h | 2 |
2 files changed, 0 insertions, 6 deletions
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c index affec4674adb..c253e20087ce 100644 --- a/drivers/media/video/cx88/cx88-dvb.c +++ b/drivers/media/video/cx88/cx88-dvb.c | |||
@@ -634,10 +634,6 @@ static int dvb_register(struct cx8802_dev *dev) | |||
634 | return -1; | 634 | return -1; |
635 | } | 635 | } |
636 | 636 | ||
637 | if (dev->core->pll_desc) { | ||
638 | dev->dvb.frontend->ops.info.frequency_min = dev->core->pll_desc->min; | ||
639 | dev->dvb.frontend->ops.info.frequency_max = dev->core->pll_desc->max; | ||
640 | } | ||
641 | /* Ensure all frontends negotiate bus access */ | 637 | /* Ensure all frontends negotiate bus access */ |
642 | dev->dvb.frontend->ops.ts_bus_ctrl = cx88_dvb_bus_ctrl; | 638 | dev->dvb.frontend->ops.ts_bus_ctrl = cx88_dvb_bus_ctrl; |
643 | 639 | ||
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index 738d4f20c580..250c29ab032d 100644 --- a/drivers/media/video/cx88/cx88.h +++ b/drivers/media/video/cx88/cx88.h | |||
@@ -316,8 +316,6 @@ struct cx88_core { | |||
316 | 316 | ||
317 | /* config info -- dvb */ | 317 | /* config info -- dvb */ |
318 | #if defined(CONFIG_VIDEO_BUF_DVB) || defined(CONFIG_VIDEO_BUF_DVB_MODULE) | 318 | #if defined(CONFIG_VIDEO_BUF_DVB) || defined(CONFIG_VIDEO_BUF_DVB_MODULE) |
319 | struct dvb_pll_desc *pll_desc; | ||
320 | unsigned int pll_addr; | ||
321 | int (*prev_set_voltage)(struct dvb_frontend* fe, fe_sec_voltage_t voltage); | 319 | int (*prev_set_voltage)(struct dvb_frontend* fe, fe_sec_voltage_t voltage); |
322 | #endif | 320 | #endif |
323 | 321 | ||