Commit ea17629f authored by Lennert Buytenhek's avatar Lennert Buytenhek Committed by Thomas Gleixner

[MTD] maps ixp2000: fix compile warnings in ixp2000 map driver

Fix two compile warnings that occur because of treating two
'unsigned long's as 'void *'s.
Signed-off-by: default avatarLennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 30966174
/* /*
* $Id: ixp2000.c,v 1.6 2005/03/18 14:07:46 gleixner Exp $ * $Id: ixp2000.c,v 1.8 2005/11/07 08:09:02 gleixner Exp $
* *
* drivers/mtd/maps/ixp2000.c * drivers/mtd/maps/ixp2000.c
* *
...@@ -193,7 +193,7 @@ static int ixp2000_flash_probe(struct device *_dev) ...@@ -193,7 +193,7 @@ static int ixp2000_flash_probe(struct device *_dev)
/* /*
* map_priv_2 is used to store a ptr to to the bank_setup routine * map_priv_2 is used to store a ptr to to the bank_setup routine
*/ */
info->map.map_priv_2 = (void __iomem *) ixp_data->bank_setup; info->map.map_priv_2 = (unsigned long) ixp_data->bank_setup;
info->map.name = dev->dev.bus_id; info->map.name = dev->dev.bus_id;
info->map.read = ixp2000_flash_read8; info->map.read = ixp2000_flash_read8;
...@@ -210,7 +210,7 @@ static int ixp2000_flash_probe(struct device *_dev) ...@@ -210,7 +210,7 @@ static int ixp2000_flash_probe(struct device *_dev)
goto Error; goto Error;
} }
info->map.map_priv_1 = ioremap(dev->resource->start, info->map.map_priv_1 = (unsigned long) ioremap(dev->resource->start,
dev->resource->end - dev->resource->start + 1); dev->resource->end - dev->resource->start + 1);
if (!info->map.map_priv_1) { if (!info->map.map_priv_1) {
dev_err(_dev, "Failed to ioremap flash region\n"); dev_err(_dev, "Failed to ioremap flash region\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment