Skip to content

Commit

Permalink
[PATCH] drivers/scsi/mac53c94.c __iomem annotations
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Feb 8, 2006
1 parent 3ba9d91 commit 7be7cbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/scsi/mac53c94.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7be7cbf

Please sign in to comment.