Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit abac08d7 authored by Ben Dooks's avatar Ben Dooks Committed by Russell King
Browse files

[ARM] 4059/1: VR1000: fix LED3's platform device number



LED 3 should have been registered with the
platform deviceid of 3, instead of 1 (which
was used for LED 1).

Signed-off-by: default avatarBen Dooks <ben-linux@fluff.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 3a2aeda8
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -352,7 +352,7 @@ static struct platform_device vr1000_led2 = {


static struct platform_device vr1000_led3 = {
static struct platform_device vr1000_led3 = {
	.name		= "s3c24xx_led",
	.name		= "s3c24xx_led",
	.id		= 1,
	.id		= 3,
	.dev		= {
	.dev		= {
		.platform_data	= &vr1000_led3_pdata,
		.platform_data	= &vr1000_led3_pdata,
	},
	},