diff options
Diffstat (limited to 'drivers/media/dvb/mantis/hopper_vp3028.c')
-rw-r--r-- | drivers/media/dvb/mantis/hopper_vp3028.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/mantis/hopper_vp3028.c b/drivers/media/dvb/mantis/hopper_vp3028.c index 96674c78e86b..68a29f8bdf73 100644 --- a/drivers/media/dvb/mantis/hopper_vp3028.c +++ b/drivers/media/dvb/mantis/hopper_vp3028.c | |||
@@ -47,17 +47,17 @@ static int vp3028_frontend_init(struct mantis_pci *mantis, struct dvb_frontend * | |||
47 | struct mantis_hwconfig *config = mantis->hwconfig; | 47 | struct mantis_hwconfig *config = mantis->hwconfig; |
48 | int err = 0; | 48 | int err = 0; |
49 | 49 | ||
50 | gpio_set_bits(mantis, config->reset, 0); | 50 | mantis_gpio_set_bits(mantis, config->reset, 0); |
51 | msleep(100); | 51 | msleep(100); |
52 | err = mantis_frontend_power(mantis, POWER_ON); | 52 | err = mantis_frontend_power(mantis, POWER_ON); |
53 | msleep(100); | 53 | msleep(100); |
54 | gpio_set_bits(mantis, config->reset, 1); | 54 | mantis_gpio_set_bits(mantis, config->reset, 1); |
55 | 55 | ||
56 | err = mantis_frontend_power(mantis, POWER_ON); | 56 | err = mantis_frontend_power(mantis, POWER_ON); |
57 | if (err == 0) { | 57 | if (err == 0) { |
58 | msleep(250); | 58 | msleep(250); |
59 | dprintk(MANTIS_ERROR, 1, "Probing for 10353 (DVB-T)"); | 59 | dprintk(MANTIS_ERROR, 1, "Probing for 10353 (DVB-T)"); |
60 | fe = zl10353_attach(&hopper_vp3028_config, adapter); | 60 | fe = dvb_attach(zl10353_attach, &hopper_vp3028_config, adapter); |
61 | 61 | ||
62 | if (!fe) | 62 | if (!fe) |
63 | return -1; | 63 | return -1; |