Commit 175553ed authored by Mans Rullgard's avatar Mans Rullgard Committed by Tejun Heo

ata: sata_dwc_460ex: get rid of incorrect cast

The (void *__iomem) cast is wrong.  Change the target type of the
"base" pointer to void __iomem instead and drop the cast.
Tested-by: default avatarChristian Lamparter <chunkeey@googlemail.com>
Signed-off-by: default avatarMans Rullgard <mans@mansr.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent ae95d951
......@@ -1219,7 +1219,7 @@ static int sata_dwc_probe(struct platform_device *ofdev)
struct sata_dwc_device *hsdev;
u32 idr, versionr;
char *ver = (char *)&versionr;
u8 __iomem *base;
void __iomem *base;
int err = 0;
int irq;
struct ata_host *host;
......@@ -1246,7 +1246,7 @@ static int sata_dwc_probe(struct platform_device *ofdev)
dev_dbg(&ofdev->dev, "ioremap done for SATA register address\n");
/* Synopsys DWC SATA specific Registers */
hsdev->sata_dwc_regs = (void *__iomem)(base + SATA_DWC_REG_OFFSET);
hsdev->sata_dwc_regs = base + SATA_DWC_REG_OFFSET;
/* Setup port */
host->ports[0]->ioaddr.cmd_addr = base;
......
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