Commit 2cf69e76 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Jazz: Fix I/O port resources.

struct resource members were shuffeled a while ago.
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent d62801e9
...@@ -45,10 +45,27 @@ void __init plat_time_init(struct irqaction *irq) ...@@ -45,10 +45,27 @@ void __init plat_time_init(struct irqaction *irq)
} }
static struct resource jazz_io_resources[] = { static struct resource jazz_io_resources[] = {
{ "dma1", 0x00, 0x1f, IORESOURCE_BUSY }, {
{ "timer", 0x40, 0x5f, IORESOURCE_BUSY }, .start = 0x00,
{ "dma page reg", 0x80, 0x8f, IORESOURCE_BUSY }, .end = 0x1f,
{ "dma2", 0xc0, 0xdf, IORESOURCE_BUSY }, .name = "dma1",
.flags = IORESOURCE_BUSY
}, {
.start = 0x40,
.end = 0x5f,
.name = "timer",
.end = IORESOURCE_BUSY
}, {
.start = 0x80,
.end = 0x8f,
.name = "dma page reg",
.flags = IORESOURCE_BUSY
}, {
.start = 0xc0,
.end = 0xdf,
.name = "dma2",
.flags = IORESOURCE_BUSY
}
}; };
void __init plat_mem_setup(void) void __init plat_mem_setup(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment