diff options
author | Olof Johansson <olof@lixom.net> | 2012-10-01 14:07:32 -0700 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-10-01 14:07:32 -0700 |
commit | 17a505edb09495510ac8998450980472c412455b (patch) | |
tree | 07f3a9e512f67cffae1dde071c8247821dd17e60 /arch/arm/mach-ux500/board-mop500-regulators.c | |
parent | d9a807461fc8cc0d6ba589ea0730d139122af012 (diff) | |
parent | b10dcdcac43b2b5adf800a19f782fef38ada75a1 (diff) |
Merge branch 'next/fixes-non-critical' into HEAD
Diffstat (limited to 'arch/arm/mach-ux500/board-mop500-regulators.c')
-rw-r--r-- | arch/arm/mach-ux500/board-mop500-regulators.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/mach-ux500/board-mop500-regulators.c b/arch/arm/mach-ux500/board-mop500-regulators.c index 52426a425787..2a17bc506cff 100644 --- a/arch/arm/mach-ux500/board-mop500-regulators.c +++ b/arch/arm/mach-ux500/board-mop500-regulators.c @@ -13,6 +13,21 @@ #include <linux/regulator/ab8500.h> #include "board-mop500-regulators.h" +static struct regulator_consumer_supply gpio_en_3v3_consumers[] = { + REGULATOR_SUPPLY("vdd33a", "smsc911x.0"), +}; + +struct regulator_init_data gpio_en_3v3_regulator = { + .constraints = { + .name = "EN-3V3", + .min_uV = 3300000, + .max_uV = 3300000, + .valid_ops_mask = REGULATOR_CHANGE_STATUS, + }, + .num_consumer_supplies = ARRAY_SIZE(gpio_en_3v3_consumers), + .consumer_supplies = gpio_en_3v3_consumers, +}; + /* * TPS61052 regulator */ |