diff options
author | Laurent Pinchart <laurentp@cse-semaphore.com> | 2008-06-24 17:15:58 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-06-24 22:56:57 -0400 |
commit | da3854fc9f80c0240ba7cadd2aebf036683ff21b (patch) | |
tree | 5dc3a03621675e96e226eb9e893703e6e1e393dd /arch/blackfin/mach-bf527/boards/ezkit.c | |
parent | 08c3f57caa16b231f6627889cb43581c020f566a (diff) |
DM9000: Fixup blackfin after removing 2 resource usage
The dm9000 driver accepts either 2 or 3 resources to describe the platform
devices. The 2 resources case abuses the ioresource mechanism by passing
ioremap()ed memory through the platform device resources. This patch removes
converts boards that were using it to the 3 resources scheme.
CC: Bryan Wu <cooloney@kernel.org>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'arch/blackfin/mach-bf527/boards/ezkit.c')
-rw-r--r-- | arch/blackfin/mach-bf527/boards/ezkit.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf527/boards/ezkit.c b/arch/blackfin/mach-bf527/boards/ezkit.c index 5958eecefcf1..689b69c98ee4 100644 --- a/arch/blackfin/mach-bf527/boards/ezkit.c +++ b/arch/blackfin/mach-bf527/boards/ezkit.c | |||
@@ -323,10 +323,15 @@ static struct platform_device smc91x_device = { | |||
323 | static struct resource dm9000_resources[] = { | 323 | static struct resource dm9000_resources[] = { |
324 | [0] = { | 324 | [0] = { |
325 | .start = 0x203FB800, | 325 | .start = 0x203FB800, |
326 | .end = 0x203FB800 + 8, | 326 | .end = 0x203FB800 + 1, |
327 | .flags = IORESOURCE_MEM, | 327 | .flags = IORESOURCE_MEM, |
328 | }, | 328 | }, |
329 | [1] = { | 329 | [1] = { |
330 | .start = 0x203FB800 + 4, | ||
331 | .end = 0x203FB800 + 5, | ||
332 | .flags = IORESOURCE_MEM, | ||
333 | }, | ||
334 | [2] = { | ||
330 | .start = IRQ_PF9, | 335 | .start = IRQ_PF9, |
331 | .end = IRQ_PF9, | 336 | .end = IRQ_PF9, |
332 | .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE), | 337 | .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE), |