Skip to content

Commit

Permalink
ARM: ep93xx: simone: register audio platform device
Browse files Browse the repository at this point in the history
Since the ASoC machine driver is now a platform driver we need to register
a matching platform device.

Signed-off-by: Mika Westerberg <mika.westerberg@iki.fi>
Reviewed-by: Ryan Mallon <rmallon@gmail.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Mika Westerberg authored and Mark Brown committed Sep 16, 2011
1 parent 62e4f7d commit e5063fe
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion arch/arm/mach-ep93xx/simone.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ static struct i2c_board_info __initdata simone_i2c_board_info[] = {
},
};

static struct platform_device simone_audio_device = {
.name = "simone-audio",
.id = -1,
};

static void __init simone_register_audio(void)
{
ep93xx_register_ac97();
platform_device_register(&simone_audio_device);
}

static void __init simone_init_machine(void)
{
ep93xx_init_devices();
Expand All @@ -61,7 +72,7 @@ static void __init simone_init_machine(void)
ep93xx_register_fb(&simone_fb_info);
ep93xx_register_i2c(&simone_i2c_gpio_data, simone_i2c_board_info,
ARRAY_SIZE(simone_i2c_board_info));
ep93xx_register_ac97();
simone_register_audio();
}

MACHINE_START(SIM_ONE, "Simplemachines Sim.One Board")
Expand Down

0 comments on commit e5063fe

Please sign in to comment.