diff options
-rw-r--r-- | arch/arm/mach-s3c64xx/mach-crag6410-module.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c64xx/mach-crag6410-module.c b/arch/arm/mach-s3c64xx/mach-crag6410-module.c index e1ea2ffb6c02..d4a231d666d2 100644 --- a/arch/arm/mach-s3c64xx/mach-crag6410-module.c +++ b/arch/arm/mach-s3c64xx/mach-crag6410-module.c | |||
@@ -136,6 +136,14 @@ static const struct i2c_board_info wm1259_devs[] = { | |||
136 | }, | 136 | }, |
137 | }; | 137 | }; |
138 | 138 | ||
139 | static struct regulator_init_data wm8994_ldo1 = { | ||
140 | .supply_regulator = "WALLVDD", | ||
141 | }; | ||
142 | |||
143 | static struct regulator_init_data wm8994_ldo2 = { | ||
144 | .supply_regulator = "WALLVDD", | ||
145 | }; | ||
146 | |||
139 | static struct wm8994_pdata wm8994_pdata = { | 147 | static struct wm8994_pdata wm8994_pdata = { |
140 | .gpio_base = CODEC_GPIO_BASE, | 148 | .gpio_base = CODEC_GPIO_BASE, |
141 | .gpio_defaults = { | 149 | .gpio_defaults = { |
@@ -143,8 +151,8 @@ static struct wm8994_pdata wm8994_pdata = { | |||
143 | }, | 151 | }, |
144 | .irq_base = CODEC_IRQ_BASE, | 152 | .irq_base = CODEC_IRQ_BASE, |
145 | .ldo = { | 153 | .ldo = { |
146 | { }, | 154 | { .init_data = &wm8994_ldo1, }, |
147 | { }, | 155 | { .init_data = &wm8994_ldo2, }, |
148 | }, | 156 | }, |
149 | }; | 157 | }; |
150 | 158 | ||