mirror of https://gitee.com/openkylin/linux.git
pinctrl: lynxpoint: Enable pin configuration setting for GPIO chip
It appears that pin configuration for GPIO chip hasn't been enabled yet
due to absence of ->set_config() callback.
Enable it here for Intel Lynxpoint PCH.
Depends-on: 2956b5d94a
("pinctrl / gpio: Introduce .set_config() callback for GPIO chips")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
This commit is contained in:
parent
d25dd66ae7
commit
1d112baae8
|
@ -874,6 +874,7 @@ static int lp_gpio_probe(struct platform_device *pdev)
|
||||||
gc->direction_output = lp_gpio_direction_output;
|
gc->direction_output = lp_gpio_direction_output;
|
||||||
gc->get = lp_gpio_get;
|
gc->get = lp_gpio_get;
|
||||||
gc->set = lp_gpio_set;
|
gc->set = lp_gpio_set;
|
||||||
|
gc->set_config = gpiochip_generic_config;
|
||||||
gc->get_direction = lp_gpio_get_direction;
|
gc->get_direction = lp_gpio_get_direction;
|
||||||
gc->base = -1;
|
gc->base = -1;
|
||||||
gc->ngpio = LP_NUM_GPIO;
|
gc->ngpio = LP_NUM_GPIO;
|
||||||
|
|
Loading…
Reference in New Issue