1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-04 04:06:20 +03:00

Replace hardcoded values with their correct definitions

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8046 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-07-18 17:27:40 +00:00
parent 5b386e7073
commit 388d9e834c
2 changed files with 2 additions and 2 deletions

View 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,
},
};

View 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");