diff options
-rw-r--r-- | arch/arm/mach-omap2/board-igep0020.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c index adc1b46fa04e..71488b2b6981 100644 --- a/arch/arm/mach-omap2/board-igep0020.c +++ b/arch/arm/mach-omap2/board-igep0020.c | |||
@@ -173,12 +173,22 @@ static void __init igep2_init_irq(void) | |||
173 | omap_gpio_init(); | 173 | omap_gpio_init(); |
174 | } | 174 | } |
175 | 175 | ||
176 | static struct twl4030_codec_audio_data igep2_audio_data = { | ||
177 | .audio_mclk = 26000000, | ||
178 | }; | ||
179 | |||
180 | static struct twl4030_codec_data igep2_codec_data = { | ||
181 | .audio_mclk = 26000000, | ||
182 | .audio = &igep2_audio_data, | ||
183 | }; | ||
184 | |||
176 | static struct twl4030_platform_data igep2_twldata = { | 185 | static struct twl4030_platform_data igep2_twldata = { |
177 | .irq_base = TWL4030_IRQ_BASE, | 186 | .irq_base = TWL4030_IRQ_BASE, |
178 | .irq_end = TWL4030_IRQ_END, | 187 | .irq_end = TWL4030_IRQ_END, |
179 | 188 | ||
180 | /* platform_data for children goes here */ | 189 | /* platform_data for children goes here */ |
181 | .usb = &igep2_usb_data, | 190 | .usb = &igep2_usb_data, |
191 | .codec = &igep2_codec_data, | ||
182 | .gpio = &igep2_gpio_data, | 192 | .gpio = &igep2_gpio_data, |
183 | .vmmc1 = &igep2_vmmc1, | 193 | .vmmc1 = &igep2_vmmc1, |
184 | 194 | ||