diff options
| author | roald <roald@sh-dt-4505.(none)> | 2009-07-13 17:25:21 +0800 |
|---|---|---|
| committer | Liam Girdwood <[email protected]> | 2009-09-22 13:32:37 +0100 |
| commit | ed6543243a1c557dbe2005a86f6d8e851c1ebb79 (patch) | |
| tree | bc8775df00c2867ac78ca1cd26a99429757a09ff | |
| parent | e88267e1646037fa2c155515c78bd01a5c81f058 (diff) | |
regulator: add initialization macro of regulator supply
Signed-off-by: Haojian Zhuang <[email protected]>
Acked-by: Mark Brown <[email protected]>
Signed-off-by: Liam Girdwood <[email protected]>
| -rw-r--r-- | include/linux/regulator/machine.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h index 73a88f6cbb1c..99a4e2eb36aa 100644 --- a/include/linux/regulator/machine.h +++ b/include/linux/regulator/machine.h @@ -141,6 +141,13 @@ struct regulator_consumer_supply { const char *supply; /* consumer supply - e.g. "vcc" */ }; +/* Initialize struct regulator_consumer_supply */ +#define REGULATOR_SUPPLY(_name, _dev_name) \ +{ \ + .supply = _name, \ + .dev_name = _dev_name, \ +} + /** * struct regulator_init_data - regulator platform initialisation data. * |