diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-05-19 12:08:47 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-05-19 12:08:47 -0300 |
commit | 4cac5256e71021e5bd26eff40f465a6f41fe4b1a (patch) | |
tree | fc4404c714ea4579b950e4b783c6ab5b14427d50 /linux/drivers/media/video/cx88 | |
parent | f768c8f3a921624366296efddaecf6f962ecdbe8 (diff) | |
download | mediapointer-dvb-s2-4cac5256e71021e5bd26eff40f465a6f41fe4b1a.tar.gz mediapointer-dvb-s2-4cac5256e71021e5bd26eff40f465a6f41fe4b1a.tar.bz2 |
Fix broken DVB drivers caused by a recent merge
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-dvb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c index 8fd03540b..bea7b4c1b 100644 --- a/linux/drivers/media/video/cx88/cx88-dvb.c +++ b/linux/drivers/media/video/cx88/cx88-dvb.c @@ -722,8 +722,8 @@ static int dvb_register(struct cx8802_dev *dev) dev->dvb.frontend = cx24123_attach(&kworld_dvbs_100_config, &dev->core->i2c_adap); if (dev->dvb.frontend) { - dev->core->prev_set_voltage = dev->dvb.frontend->ops->set_voltage; - dev->dvb.frontend->ops->set_voltage = kworld_dvbs_100_set_voltage; + dev->core->prev_set_voltage = dev->dvb.frontend->ops.set_voltage; + dev->dvb.frontend->ops.set_voltage = kworld_dvbs_100_set_voltage; } break; #endif |