diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2013-11-13 15:48:17 +0100 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2013-12-04 22:32:20 +0100 |
commit | ee880dbd1688c99084052c7890246c1e16c89820 (patch) | |
tree | 92d19cf62d4c088f2b73af3d7458b62f9bf01b2f /arch/arm/mach-davinci/dm355.c | |
parent | Linux 3.13-rc1 (diff) | |
download | linux-ee880dbd1688c99084052c7890246c1e16c89820.tar.xz linux-ee880dbd1688c99084052c7890246c1e16c89820.zip |
ARM: davinci: Fix McASP mem resource names
The ASoC McASP driver looks for the mem resources by name
"mpu" and "dat" regions.
Change/add the needed name for the mem resources so the driver can pick the
correct resource.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm355.c')
-rw-r--r-- | arch/arm/mach-davinci/dm355.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/dm355.c b/arch/arm/mach-davinci/dm355.c index ef9ff1fb6f52..d4baf4f6cf42 100644 --- a/arch/arm/mach-davinci/dm355.c +++ b/arch/arm/mach-davinci/dm355.c @@ -641,6 +641,7 @@ static struct platform_device dm355_edma_device = { static struct resource dm355_asp1_resources[] = { { + .name = "mpu", .start = DAVINCI_ASP1_BASE, .end = DAVINCI_ASP1_BASE + SZ_8K - 1, .flags = IORESOURCE_MEM, |