Commit f502e861 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (9763): em28xx: fix gpio settings

A previous changeset moved gpio from em28xx struct into em28xx_board.
However, the driver were not updated to properly honor those gpio's.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 1c67e76f
...@@ -775,9 +775,9 @@ int em28xx_set_mode(struct em28xx *dev, enum em28xx_mode set_mode) ...@@ -775,9 +775,9 @@ int em28xx_set_mode(struct em28xx *dev, enum em28xx_mode set_mode)
dev->mode = set_mode; dev->mode = set_mode;
if (dev->mode == EM28XX_DIGITAL_MODE) if (dev->mode == EM28XX_DIGITAL_MODE)
return em28xx_gpio_set(dev, dev->digital_gpio); return em28xx_gpio_set(dev, dev->board.dvb_gpio);
else else
return em28xx_gpio_set(dev, dev->analog_gpio); return em28xx_gpio_set(dev, INPUT(dev->ctl_input)->gpio);
} }
EXPORT_SYMBOL_GPL(em28xx_set_mode); EXPORT_SYMBOL_GPL(em28xx_set_mode);
......
...@@ -431,9 +431,6 @@ struct em28xx { ...@@ -431,9 +431,6 @@ struct em28xx {
/* Some older em28xx chips needs a waiting time after writing */ /* Some older em28xx chips needs a waiting time after writing */
unsigned int wait_after_write; unsigned int wait_after_write;
/* GPIO sequences for analog and digital mode */
struct em28xx_reg_seq *analog_gpio, *digital_gpio;
/* GPIO sequences for tuner callbacks */ /* GPIO sequences for tuner callbacks */
struct em28xx_reg_seq *tuner_gpio; struct em28xx_reg_seq *tuner_gpio;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment