diff options
author | Brian Walsh <brian@walsh.ws> | 2006-09-22 05:16:16 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-09-22 05:16:16 -0400 |
commit | f40a6f1cc7fe522e51e1ac4c7ab3035a434f2cef (patch) | |
tree | d1d449a85661db1241f739bb6f05bc4765aa84e6 /drivers/mtd/maps | |
parent | f2dd117fa51dd8fc071b1352254c0d14d2399b0a (diff) |
[MTD] Fix ixp4xx partition parsing.
If the amount of flash is not divisible by 2 then the mask in
parse_mtd_partitions would fail to work as designed. Passing in the base
address corrects this problem.
Signed-off-by: Brian Walsh <brian@walsh.ws>
Cc: Deepak Sanexa <dsanexa@mvista.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r-- | drivers/mtd/maps/ixp4xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/ixp4xx.c b/drivers/mtd/maps/ixp4xx.c index 986c58628390..7a828e3e6446 100644 --- a/drivers/mtd/maps/ixp4xx.c +++ b/drivers/mtd/maps/ixp4xx.c | |||
@@ -253,7 +253,7 @@ static int ixp4xx_flash_probe(struct platform_device *dev) | |||
253 | /* Use the fast version */ | 253 | /* Use the fast version */ |
254 | info->map.write = ixp4xx_write16, | 254 | info->map.write = ixp4xx_write16, |
255 | 255 | ||
256 | err = parse_mtd_partitions(info->mtd, probes, &info->partitions, 0); | 256 | err = parse_mtd_partitions(info->mtd, probes, &info->partitions, dev->resource->start); |
257 | if (err > 0) { | 257 | if (err > 0) { |
258 | err = add_mtd_partitions(info->mtd, info->partitions, err); | 258 | err = add_mtd_partitions(info->mtd, info->partitions, err); |
259 | if(err) | 259 | if(err) |