diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2010-11-14 12:56:00 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:16:48 -0500 |
commit | 3037fd14302d635426996fb7f6fcf7cb98dc15b9 (patch) | |
tree | c237fb91f6033383e937198e14627a96df086dd4 /drivers/media/dvb/mantis/hopper_vp3028.c | |
parent | a22407faba57c3624beea1a9fad7cbdcf5a19a1a (diff) |
[media] Mantis: Rename gpio_set_bits to mantis_gpio_set_bits
This function is declared extern and exported, and should not be given
a generic name which may conflict with gpiolib in future.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/mantis/hopper_vp3028.c')
-rw-r--r-- | drivers/media/dvb/mantis/hopper_vp3028.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/dvb/mantis/hopper_vp3028.c b/drivers/media/dvb/mantis/hopper_vp3028.c index 567ed24f2de3..68a29f8bdf73 100644 --- a/drivers/media/dvb/mantis/hopper_vp3028.c +++ b/drivers/media/dvb/mantis/hopper_vp3028.c | |||
@@ -47,11 +47,11 @@ 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) { |