diff options
author | Barry Song <barry.song@analog.com> | 2009-07-27 02:42:50 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-09-16 22:10:10 -0400 |
commit | b3dec4a4ff495248170358cb3b8254a814e5b096 (patch) | |
tree | 510b89d1dc9ea45d16bde21dd7b718f78a3225bf /arch/blackfin/mach-bf527 | |
parent | 8d71e075966e29232cd38d8ca6335047a164c1dc (diff) |
Blackfin: cm-bf527/bf537-stamp: fix dm9000 resources
The dm9000 driver expects two IORESOURCE_MEM to get at the device, so make
sure we declare things properly.
Signed-off-by: Barry Song <barry.song@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf527')
-rw-r--r-- | arch/blackfin/mach-bf527/boards/cm_bf527.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf527/boards/cm_bf527.c b/arch/blackfin/mach-bf527/boards/cm_bf527.c index cb360e99f1dc..18b9bd7d7d64 100644 --- a/arch/blackfin/mach-bf527/boards/cm_bf527.c +++ b/arch/blackfin/mach-bf527/boards/cm_bf527.c | |||
@@ -311,10 +311,15 @@ static struct platform_device smc91x_device = { | |||
311 | static struct resource dm9000_resources[] = { | 311 | static struct resource dm9000_resources[] = { |
312 | [0] = { | 312 | [0] = { |
313 | .start = 0x203FB800, | 313 | .start = 0x203FB800, |
314 | .end = 0x203FB800 + 8, | 314 | .end = 0x203FB800 + 1, |
315 | .flags = IORESOURCE_MEM, | 315 | .flags = IORESOURCE_MEM, |
316 | }, | 316 | }, |
317 | [1] = { | 317 | [1] = { |
318 | .start = 0x203FB804, | ||
319 | .end = 0x203FB804 + 1, | ||
320 | .flags = IORESOURCE_MEM, | ||
321 | }, | ||
322 | [2] = { | ||
318 | .start = IRQ_PF9, | 323 | .start = IRQ_PF9, |
319 | .end = IRQ_PF9, | 324 | .end = IRQ_PF9, |
320 | .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE), | 325 | .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE), |