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

Commit b5723521 authored by Ian Campbell's avatar Ian Campbell Committed by Russell King
Browse files

[ARM] 3048/1: register i2s resources not i2c resources for the pxa i2s platform device



Patch from Ian Campbell

As noted by Uli Luckas in the comments of 3025 there is a typo in the i2s platform device. The i2s platform device refers to the i2c resources.

Signed-off-by: default avatarIan Campbell <icampbell@arcom.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 57718976
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -293,7 +293,7 @@ static struct resource i2s_resources[] = {
static struct platform_device i2s_device = {
	.name		= "pxa2xx-i2s",
	.id		= -1,
	.resource	= i2c_resources,
	.resource	= i2s_resources,
	.num_resources	= ARRAY_SIZE(i2s_resources),
};