Rajendra Nayak | 8f446e6 | 2011-11-18 16:47:17 +0530 | [diff] [blame] | 1 | /* |
| 2 | * OpenFirmware regulator support routines |
| 3 | * |
| 4 | */ |
| 5 | |
| 6 | #ifndef __LINUX_OF_REG_H |
| 7 | #define __LINUX_OF_REG_H |
| 8 | |
Javier Martinez Canillas | 072e78b | 2014-11-10 14:43:53 +0100 | [diff] [blame] | 9 | struct regulator_desc; |
| 10 | |
Thierry Reding | 1c8fa58 | 2012-04-26 16:52:20 +0200 | [diff] [blame] | 11 | struct of_regulator_match { |
| 12 | const char *name; |
| 13 | void *driver_data; |
| 14 | struct regulator_init_data *init_data; |
| 15 | struct device_node *of_node; |
Javier Martinez Canillas | 75d6b2f | 2014-11-10 14:43:54 +0100 | [diff] [blame] | 16 | const struct regulator_desc *desc; |
Thierry Reding | 1c8fa58 | 2012-04-26 16:52:20 +0200 | [diff] [blame] | 17 | }; |
| 18 | |
Rajendra Nayak | 8f446e6 | 2011-11-18 16:47:17 +0530 | [diff] [blame] | 19 | #if defined(CONFIG_OF) |
| 20 | extern struct regulator_init_data |
Shawn Guo | d9a861c | 2011-12-01 17:21:06 +0800 | [diff] [blame] | 21 | *of_get_regulator_init_data(struct device *dev, |
Javier Martinez Canillas | 072e78b | 2014-11-10 14:43:53 +0100 | [diff] [blame] | 22 | struct device_node *node, |
| 23 | const struct regulator_desc *desc); |
Thierry Reding | 1c8fa58 | 2012-04-26 16:52:20 +0200 | [diff] [blame] | 24 | extern int of_regulator_match(struct device *dev, struct device_node *node, |
| 25 | struct of_regulator_match *matches, |
| 26 | unsigned int num_matches); |
Rajendra Nayak | 8f446e6 | 2011-11-18 16:47:17 +0530 | [diff] [blame] | 27 | #else |
| 28 | static inline struct regulator_init_data |
Shawn Guo | d9a861c | 2011-12-01 17:21:06 +0800 | [diff] [blame] | 29 | *of_get_regulator_init_data(struct device *dev, |
Javier Martinez Canillas | 072e78b | 2014-11-10 14:43:53 +0100 | [diff] [blame] | 30 | struct device_node *node, |
| 31 | const struct regulator_desc *desc) |
Rajendra Nayak | 8f446e6 | 2011-11-18 16:47:17 +0530 | [diff] [blame] | 32 | { |
| 33 | return NULL; |
| 34 | } |
Thierry Reding | 1c8fa58 | 2012-04-26 16:52:20 +0200 | [diff] [blame] | 35 | |
| 36 | static inline int of_regulator_match(struct device *dev, |
| 37 | struct device_node *node, |
| 38 | struct of_regulator_match *matches, |
| 39 | unsigned int num_matches) |
| 40 | { |
| 41 | return 0; |
| 42 | } |
Rajendra Nayak | 8f446e6 | 2011-11-18 16:47:17 +0530 | [diff] [blame] | 43 | #endif /* CONFIG_OF */ |
| 44 | |
| 45 | #endif /* __LINUX_OF_REG_H */ |