From: Ian Campbell Date: Fri, 28 Oct 2005 14:31:48 +0000 (+0100) Subject: [ARM] 3048/1: register i2s resources not i2c resources for the pxa i2s platform device X-Git-Tag: v2.6.15-rc1~731^2~35^2~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b57235215933d5fde4013e2448223b934b4ac2b7;p=platform%2Fkernel%2Flinux-exynos.git [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: Ian Campbell Signed-off-by: Russell King --- diff --git a/arch/arm/mach-pxa/generic.c b/arch/arm/mach-pxa/generic.c index 2e9e170..719b91e 100644 --- a/arch/arm/mach-pxa/generic.c +++ b/arch/arm/mach-pxa/generic.c @@ -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), };