|
@@ -56,14 +56,19 @@ static inline struct regulator_dev *dev_to_rdev(struct device *dev)
|
|
|
return container_of(dev, struct regulator_dev, dev);
|
|
|
}
|
|
|
|
|
|
-struct regulator_dev *of_find_regulator_by_node(struct device_node *np);
|
|
|
-
|
|
|
#ifdef CONFIG_OF
|
|
|
+struct regulator_dev *of_find_regulator_by_node(struct device_node *np);
|
|
|
struct regulator_init_data *regulator_of_get_init_data(struct device *dev,
|
|
|
const struct regulator_desc *desc,
|
|
|
struct regulator_config *config,
|
|
|
struct device_node **node);
|
|
|
#else
|
|
|
+static inline struct regulator_dev *
|
|
|
+of_find_regulator_by_node(struct device_node *np)
|
|
|
+{
|
|
|
+ return NULL;
|
|
|
+}
|
|
|
+
|
|
|
static inline struct regulator_init_data *
|
|
|
regulator_of_get_init_data(struct device *dev,
|
|
|
const struct regulator_desc *desc,
|