OSDN Git Service

regulator: core: Only support passing enable GPIO descriptors
[uclinux-h8/linux.git] / include / linux / regulator / driver.h
index 795b38a..7f8345b 100644 (file)
@@ -401,13 +401,7 @@ struct regulator_desc {
  *           NULL).
  * @regmap: regmap to use for core regmap helpers if dev_get_regmap() is
  *          insufficient.
- * @ena_gpio_initialized: GPIO controlling regulator enable was properly
- *                        initialized, meaning that >= 0 is a valid gpio
- *                        identifier and < 0 is a non existent gpio.
- * @ena_gpio: GPIO controlling regulator enable.
- * @ena_gpiod: GPIO descriptor controlling regulator enable.
- * @ena_gpio_invert: Sense for GPIO enable control.
- * @ena_gpio_flags: Flags to use when calling gpio_request_one()
+ * @ena_gpiod: GPIO controlling regulator enable.
  */
 struct regulator_config {
        struct device *dev;
@@ -416,11 +410,7 @@ struct regulator_config {
        struct device_node *of_node;
        struct regmap *regmap;
 
-       bool ena_gpio_initialized;
-       int ena_gpio;
        struct gpio_desc *ena_gpiod;
-       unsigned int ena_gpio_invert:1;
-       unsigned int ena_gpio_flags;
 };
 
 /*