[ARM] 2910/1: missing Lubbock audio device declaration

Patch from Nicolas Pitre

This apparently fell in the crack somewhere. Add it back.

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Nicolas Pitre and committed by Russell King 2cef2d55 d8ac1063

+6
+6
arch/arm/mach-pxa/lubbock.c
··· 146 // no D+ pullup; lubbock can't connect/disconnect in software 147 }; 148 149 static struct resource sa1111_resources[] = { 150 [0] = { 151 .start = 0x10000000, ··· 200 201 static struct platform_device *devices[] __initdata = { 202 &sa1111_device, 203 &smc91x_device, 204 }; 205
··· 146 // no D+ pullup; lubbock can't connect/disconnect in software 147 }; 148 149 + static struct platform_device lub_audio_device = { 150 + .name = "pxa2xx-ac97", 151 + .id = -1, 152 + }; 153 + 154 static struct resource sa1111_resources[] = { 155 [0] = { 156 .start = 0x10000000, ··· 195 196 static struct platform_device *devices[] __initdata = { 197 &sa1111_device, 198 + &lub_audio_device, 199 &smc91x_device, 200 }; 201