Commit 7be7cbf6 authored by Al Viro's avatar Al Viro

[PATCH] drivers/scsi/mac53c94.c __iomem annotations

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 3ba9d912
......@@ -537,9 +537,9 @@ static int mac53c94_remove(struct macio_dev *mdev)
free_irq(fp->intr, fp);
if (fp->regs)
iounmap((void *) fp->regs);
iounmap(fp->regs);
if (fp->dma)
iounmap((void *) fp->dma);
iounmap(fp->dma);
kfree(fp->dma_cmd_space);
scsi_host_put(host);
......
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