[PATCH v2 5/7] mfd: syscon: Use IOMEM instead of explicit cast
Andrey Smirnov
andrew.smirnov at gmail.com
Mon Jul 18 08:14:47 PDT 2016
Signed-off-by: Andrey Smirnov <andrew.smirnov at gmail.com>
---
drivers/mfd/syscon.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index 487fa9e..295e210 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -123,7 +123,7 @@ static int syscon_probe(struct device_d *dev)
return PTR_ERR(res);
}
- syscon->base = (void __iomem *)res->start;
+ syscon->base = IOMEM(res->start);
dev->priv = syscon;
dev_dbg(dev, "map 0x%x-0x%x registered\n", res->start, res->end);
--
2.5.5
More information about the barebox
mailing list