diff options
author | Bo Shen <voice.shen@atmel.com> | 2012-10-10 22:38:16 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-11-06 04:11:33 -0500 |
commit | bac91462e8a8609d7be02a2cbf5c2b406b04ed9f (patch) | |
tree | 1ed58249628cbe0724be14166699dd4192ab9c32 /arch/arm/mach-at91/board-sam9g20ek.c | |
parent | 242b9bb83e458ddc6205265eafb8770c3dedd009 (diff) |
ASoC: sam9g20: using platform device for audio part
Signed-off-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'arch/arm/mach-at91/board-sam9g20ek.c')
-rw-r--r-- | arch/arm/mach-at91/board-sam9g20ek.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/board-sam9g20ek.c b/arch/arm/mach-at91/board-sam9g20ek.c index 3ab2b86a3762..5b6a6f9a94f4 100644 --- a/arch/arm/mach-at91/board-sam9g20ek.c +++ b/arch/arm/mach-at91/board-sam9g20ek.c | |||
@@ -353,6 +353,22 @@ static struct i2c_board_info __initdata ek_i2c_devices[] = { | |||
353 | }, | 353 | }, |
354 | }; | 354 | }; |
355 | 355 | ||
356 | static struct platform_device sam9g20ek_pcm_device = { | ||
357 | .name = "atmel-pcm-audio", | ||
358 | .id = -1, | ||
359 | }; | ||
360 | |||
361 | static struct platform_device sam9g20ek_audio_device = { | ||
362 | .name = "at91sam9g20ek-audio", | ||
363 | .id = -1, | ||
364 | }; | ||
365 | |||
366 | static void __init ek_add_device_audio(void) | ||
367 | { | ||
368 | platform_device_register(&sam9g20ek_pcm_device); | ||
369 | platform_device_register(&sam9g20ek_audio_device); | ||
370 | } | ||
371 | |||
356 | 372 | ||
357 | static void __init ek_board_init(void) | 373 | static void __init ek_board_init(void) |
358 | { | 374 | { |
@@ -394,6 +410,7 @@ static void __init ek_board_init(void) | |||
394 | at91_set_B_periph(AT91_PIN_PC1, 0); | 410 | at91_set_B_periph(AT91_PIN_PC1, 0); |
395 | /* SSC (for WM8731) */ | 411 | /* SSC (for WM8731) */ |
396 | at91_add_device_ssc(AT91SAM9260_ID_SSC, ATMEL_SSC_TX); | 412 | at91_add_device_ssc(AT91SAM9260_ID_SSC, ATMEL_SSC_TX); |
413 | ek_add_device_audio(); | ||
397 | } | 414 | } |
398 | 415 | ||
399 | MACHINE_START(AT91SAM9G20EK, "Atmel AT91SAM9G20-EK") | 416 | MACHINE_START(AT91SAM9G20EK, "Atmel AT91SAM9G20-EK") |