[MIPS] Au1200: MMC resource size off by one

Au12x0 MMC platform device strangely claims 0x41 bytes for its
memory-mapped registers. Make it claim the whole 0x80000 instead according
to the memory map given in the datasheets.

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

authored by Sergei Shtylyov and committed by Ralf Baechle dab8c6de b185194e

+2 -2
+2 -2
arch/mips/au1000/common/platform.c
··· 165 165 static struct resource au1xxx_mmc_resources[] = { 166 166 [0] = { 167 167 .start = SD0_PHYS_ADDR, 168 - .end = SD0_PHYS_ADDR + 0x40, 168 + .end = SD0_PHYS_ADDR + 0x7ffff, 169 169 .flags = IORESOURCE_MEM, 170 170 }, 171 171 [1] = { 172 172 .start = SD1_PHYS_ADDR, 173 - .end = SD1_PHYS_ADDR + 0x40, 173 + .end = SD1_PHYS_ADDR + 0x7ffff, 174 174 .flags = IORESOURCE_MEM, 175 175 }, 176 176 [2] = {