ARM: ep93xx: snappercl15: register audio platform device
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>
This commit is contained in:
parent
075b20b047
commit
989b79079c
|
@ -150,6 +150,17 @@ static struct ep93xxfb_mach_info __initdata snappercl15_fb_info = {
|
||||||
.bpp = 16,
|
.bpp = 16,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device snappercl15_audio_device = {
|
||||||
|
.name = "snappercl15-audio",
|
||||||
|
.id = -1,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void __init snappercl15_register_audio(void)
|
||||||
|
{
|
||||||
|
ep93xx_register_i2s();
|
||||||
|
platform_device_register(&snappercl15_audio_device);
|
||||||
|
}
|
||||||
|
|
||||||
static void __init snappercl15_init_machine(void)
|
static void __init snappercl15_init_machine(void)
|
||||||
{
|
{
|
||||||
ep93xx_init_devices();
|
ep93xx_init_devices();
|
||||||
|
@ -157,7 +168,7 @@ static void __init snappercl15_init_machine(void)
|
||||||
ep93xx_register_i2c(&snappercl15_i2c_gpio_data, snappercl15_i2c_data,
|
ep93xx_register_i2c(&snappercl15_i2c_gpio_data, snappercl15_i2c_data,
|
||||||
ARRAY_SIZE(snappercl15_i2c_data));
|
ARRAY_SIZE(snappercl15_i2c_data));
|
||||||
ep93xx_register_fb(&snappercl15_fb_info);
|
ep93xx_register_fb(&snappercl15_fb_info);
|
||||||
ep93xx_register_i2s();
|
snappercl15_register_audio();
|
||||||
platform_device_register(&snappercl15_nand_device);
|
platform_device_register(&snappercl15_nand_device);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue