Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 270584
b: refs/heads/master
c: 989b790
h: refs/heads/master
v: v3
  • Loading branch information
Mika Westerberg authored and Mark Brown committed Sep 16, 2011
1 parent 0dff46c commit e40a88b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 075b20b0475b1289c14ecbe0cc26754f45b7d7b6
refs/heads/master: 989b79079c06ead9b46569cf6d7259da44888778
13 changes: 12 additions & 1 deletion trunk/arch/arm/mach-ep93xx/snappercl15.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,25 @@ static struct ep93xxfb_mach_info __initdata snappercl15_fb_info = {
.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)
{
ep93xx_init_devices();
ep93xx_register_eth(&snappercl15_eth_data, 1);
ep93xx_register_i2c(&snappercl15_i2c_gpio_data, snappercl15_i2c_data,
ARRAY_SIZE(snappercl15_i2c_data));
ep93xx_register_fb(&snappercl15_fb_info);
ep93xx_register_i2s();
snappercl15_register_audio();
platform_device_register(&snappercl15_nand_device);
}

Expand Down

0 comments on commit e40a88b

Please sign in to comment.