Replace hardcoded values with their correct definitions
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 18 Jul 2007 17:27:40 +0000 (17:27 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 18 Jul 2007 17:27:40 +0000 (17:27 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8046 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/adm5120-2.6/files/arch/mips/adm5120/platform.c
target/linux/adm5120-2.6/files/drivers/mtd/nand/rbmipsnand.c

index 4459882..d0fa1f0 100644 (file)
@@ -114,7 +114,7 @@ struct platform_device adm5120_flash1_device =      {
 struct resource adm5120_nand_resource[] = {
        [0] = {
                .start  = ADM5120_SRAM1_BASE,
-               .end    = ADM5120_SRAM1_BASE+0x1000-1,
+               .end    = ADM5120_SRAM1_BASE+ADM5120_MPMC_SIZE-1,
                .flags  = IORESOURCE_MEM,
        },
 };
index 9e6ae1b..1c524d4 100644 (file)
@@ -115,7 +115,7 @@ static int rbmips_probe(struct platform_device *pdev)
 
        }
        
-       data->io_base = ioremap(pdev->resource[0].start, 0x1000);
+       data->io_base = ioremap(pdev->resource[0].start, pdev->resource[0].end - pdev->resource[0].start + 1);
 
        if (data->io_base == NULL) {
                dev_err(&pdev->dev, "ioremap failed\n");