Skip to content

Commit

Permalink
[MIPS] DBAu1200: fix bad SMC 91C111 resource size
Browse files Browse the repository at this point in the history
The on-board SMC 91C111 chip only decodes 16 bytes of memory (obviously, it
can not decode a whole megabyte starting from address 0x19000300).

Signed-off-by: Sergei Shtylyov <[email protected]>
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
Sergei Shtylyov authored and ralfbaechle committed Apr 28, 2008
1 parent f57b206 commit 3854c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/au1000/common/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ static struct resource smc91x_resources[] = {
[0] = {
.name = "smc91x-regs",
.start = AU1XXX_SMC91111_PHYS_ADDR,
.end = AU1XXX_SMC91111_PHYS_ADDR + 0xfffff,
.end = AU1XXX_SMC91111_PHYS_ADDR + 0xf,
.flags = IORESOURCE_MEM,
},
[1] = {
Expand Down

0 comments on commit 3854c69

Please sign in to comment.