diff options
author | Ian Campbell <icampbell@arcom.com> | 2005-10-28 10:31:48 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-10-28 10:31:48 -0400 |
commit | b57235215933d5fde4013e2448223b934b4ac2b7 (patch) | |
tree | 01971ad7db6d51a78e71e9099a799536d6c87631 /arch/arm | |
parent | 57718976141c2929bddd6219efb32c2abea8360c (diff) |
[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 <icampbell@arcom.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-pxa/generic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/generic.c b/arch/arm/mach-pxa/generic.c index 2e9e1702c4b3..719b91e93fa2 100644 --- a/arch/arm/mach-pxa/generic.c +++ b/arch/arm/mach-pxa/generic.c | |||
@@ -293,7 +293,7 @@ static struct resource i2s_resources[] = { | |||
293 | static struct platform_device i2s_device = { | 293 | static struct platform_device i2s_device = { |
294 | .name = "pxa2xx-i2s", | 294 | .name = "pxa2xx-i2s", |
295 | .id = -1, | 295 | .id = -1, |
296 | .resource = i2c_resources, | 296 | .resource = i2s_resources, |
297 | .num_resources = ARRAY_SIZE(i2s_resources), | 297 | .num_resources = ARRAY_SIZE(i2s_resources), |
298 | }; | 298 | }; |
299 | 299 | ||