diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2012-06-26 18:32:27 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2012-06-30 16:46:52 -0400 |
commit | d3ed18eae7b6d496e28efac428f4e7f2333ff7c2 (patch) | |
tree | 70fc61b178e94cd5d2442dd052e83404e725185e /arch/arm/mach-shmobile | |
parent | 21503a86db5015b74cceb54c41ed8862107ddaec (diff) |
ARM: mach-shmobile: add fixed voltage regulators to bonito
On bonito provide a dummy regulator for the smsc911x driver.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'arch/arm/mach-shmobile')
-rw-r--r-- | arch/arm/mach-shmobile/board-bonito.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/board-bonito.c b/arch/arm/mach-shmobile/board-bonito.c index e9b32cfbf741..4129008eae29 100644 --- a/arch/arm/mach-shmobile/board-bonito.c +++ b/arch/arm/mach-shmobile/board-bonito.c | |||
@@ -26,6 +26,8 @@ | |||
26 | #include <linux/irq.h> | 26 | #include <linux/irq.h> |
27 | #include <linux/platform_device.h> | 27 | #include <linux/platform_device.h> |
28 | #include <linux/gpio.h> | 28 | #include <linux/gpio.h> |
29 | #include <linux/regulator/fixed.h> | ||
30 | #include <linux/regulator/machine.h> | ||
29 | #include <linux/smsc911x.h> | 31 | #include <linux/smsc911x.h> |
30 | #include <linux/videodev2.h> | 32 | #include <linux/videodev2.h> |
31 | #include <mach/common.h> | 33 | #include <mach/common.h> |
@@ -75,6 +77,12 @@ | |||
75 | * S38.2 = OFF | 77 | * S38.2 = OFF |
76 | */ | 78 | */ |
77 | 79 | ||
80 | /* Dummy supplies, where voltage doesn't matter */ | ||
81 | static struct regulator_consumer_supply dummy_supplies[] = { | ||
82 | REGULATOR_SUPPLY("vddvario", "smsc911x"), | ||
83 | REGULATOR_SUPPLY("vdd33a", "smsc911x"), | ||
84 | }; | ||
85 | |||
78 | /* | 86 | /* |
79 | * FPGA | 87 | * FPGA |
80 | */ | 88 | */ |
@@ -360,6 +368,8 @@ static void __init bonito_init(void) | |||
360 | { | 368 | { |
361 | u16 val; | 369 | u16 val; |
362 | 370 | ||
371 | regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies)); | ||
372 | |||
363 | r8a7740_pinmux_init(); | 373 | r8a7740_pinmux_init(); |
364 | bonito_fpga_init(); | 374 | bonito_fpga_init(); |
365 | 375 | ||