Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39143
b: refs/heads/master
c: 2cf69e7
h: refs/heads/master
i:
  39141: ee73ce2
  39139: e4de522
  39135: 2138684
v: v3
  • Loading branch information
Ralf Baechle committed Oct 8, 2006
1 parent c8d80b2 commit 0bc8035
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d62801e961e148313910ec430e230e488fadc196
refs/heads/master: 2cf69e765a99baacf0121f3312ec84ff1031961d
25 changes: 21 additions & 4 deletions trunk/arch/mips/jazz/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,27 @@ void __init plat_time_init(struct irqaction *irq)
}

static struct resource jazz_io_resources[] = {
{ "dma1", 0x00, 0x1f, IORESOURCE_BUSY },
{ "timer", 0x40, 0x5f, IORESOURCE_BUSY },
{ "dma page reg", 0x80, 0x8f, IORESOURCE_BUSY },
{ "dma2", 0xc0, 0xdf, IORESOURCE_BUSY },
{
.start = 0x00,
.end = 0x1f,
.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)
Expand Down

0 comments on commit 0bc8035

Please sign in to comment.