Searched refs:en_gpio (Results 1 – 5 of 5) sorted by relevance
/linux/drivers/mfd/ ! |
H A D | ti-lmu.c | 30 if (lmu->en_gpio) in ti_lmu_enable_hw() 31 gpiod_set_value(lmu->en_gpio, 1); in ti_lmu_enable_hw() 49 if (lmu->en_gpio) in ti_lmu_disable_hw() 50 gpiod_set_value(lmu->en_gpio, 0); in ti_lmu_disable_hw() 170 lmu->en_gpio = devm_gpiod_get_optional(dev, "enable", GPIOD_OUT_HIGH); in ti_lmu_probe() 171 if (IS_ERR(lmu->en_gpio)) { in ti_lmu_probe() 172 ret = PTR_ERR(lmu->en_gpio); in ti_lmu_probe()
|
/linux/drivers/regulator/ ! |
H A D | sy8827n.c | 35 struct gpio_desc *en_gpio; member 143 di->en_gpio = devm_gpiod_get_optional(dev, "enable", in sy8827n_i2c_probe() 145 if (IS_ERR(di->en_gpio)) in sy8827n_i2c_probe() 146 return PTR_ERR(di->en_gpio); in sy8827n_i2c_probe()
|
H A D | mp886x.c | 39 struct gpio_desc *en_gpio; member 314 di->en_gpio = devm_gpiod_get(dev, "enable", GPIOD_OUT_HIGH); in mp886x_i2c_probe() 315 if (IS_ERR(di->en_gpio)) in mp886x_i2c_probe() 316 return PTR_ERR(di->en_gpio); in mp886x_i2c_probe()
|
/linux/drivers/misc/ ! |
H A D | ti_fpc202.c | 65 struct gpio_desc *en_gpio; member 115 if (!priv->en_gpio) in fpc202_set_enable() 118 gpiod_set_value(priv->en_gpio, enable); in fpc202_set_enable() 325 priv->en_gpio = devm_gpiod_get_optional(dev, "enable", GPIOD_OUT_HIGH); in fpc202_probe() 326 if (IS_ERR(priv->en_gpio)) { in fpc202_probe() 327 ret = PTR_ERR(priv->en_gpio); in fpc202_probe()
|
/linux/include/linux/mfd/ ! |
H A D | ti-lmu.h | 78 * @en_gpio: GPIO for HWEN pin [Optional] 84 struct gpio_desc *en_gpio; member
|