提交 78bb6df6 编写于 作者: M Mauro Carvalho Chehab

[media] cx231xx: Only change gpio direction when needed

Acked-by: NSri Deevi <Srinivasa.Deevi@conexant.com>
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 a6f6fb9c
...@@ -495,10 +495,11 @@ void cx231xx_pre_card_setup(struct cx231xx *dev) ...@@ -495,10 +495,11 @@ void cx231xx_pre_card_setup(struct cx231xx *dev)
if (dev->board.tuner_gpio) { if (dev->board.tuner_gpio) {
cx231xx_set_gpio_direction(dev, dev->board.tuner_gpio->bit, 1); cx231xx_set_gpio_direction(dev, dev->board.tuner_gpio->bit, 1);
cx231xx_set_gpio_value(dev, dev->board.tuner_gpio->bit, 1); cx231xx_set_gpio_value(dev, dev->board.tuner_gpio->bit, 1);
}
if (dev->board.tuner_sif_gpio >= 0)
cx231xx_set_gpio_direction(dev, dev->board.tuner_sif_gpio, 1); cx231xx_set_gpio_direction(dev, dev->board.tuner_sif_gpio, 1);
/* request some modules if any required */ /* request some modules if any required */
}
/* set the mode to Analog mode initially */ /* set the mode to Analog mode initially */
cx231xx_set_mode(dev, CX231XX_ANALOG_MODE); cx231xx_set_mode(dev, CX231XX_ANALOG_MODE);
......
...@@ -333,9 +333,10 @@ struct cx231xx_board { ...@@ -333,9 +333,10 @@ struct cx231xx_board {
struct cx231xx_reg_seq *dvb_gpio; struct cx231xx_reg_seq *dvb_gpio;
struct cx231xx_reg_seq *suspend_gpio; struct cx231xx_reg_seq *suspend_gpio;
struct cx231xx_reg_seq *tuner_gpio; struct cx231xx_reg_seq *tuner_gpio;
u8 tuner_sif_gpio; /* Negative means don't use it */
u8 tuner_scl_gpio; s8 tuner_sif_gpio;
u8 tuner_sda_gpio; s8 tuner_scl_gpio;
s8 tuner_sda_gpio;
/* PIN ctrl */ /* PIN ctrl */
u32 ctl_pin_status_mask; u32 ctl_pin_status_mask;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册