From: Amol Lad <amol@xxxxxxxxxxxxxxxxxxx> ioremap must be balanced by an iounmap and failing to do so can result in a memory leak. Signed-off-by: Amol Lad <amol@xxxxxxxxxxxxxxxxxxx> Cc: James Bottomley <James.Bottomley@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/scsi/zalon.c | 2 ++ 1 files changed, 2 insertions(+) diff -puN drivers/scsi/zalon.c~ioremap-balanced-with-iounmap-drivers-scsi-zalonc drivers/scsi/zalon.c --- a/drivers/scsi/zalon.c~ioremap-balanced-with-iounmap-drivers-scsi-zalonc +++ a/drivers/scsi/zalon.c @@ -156,6 +156,8 @@ zalon_probe(struct parisc_device *dev) fail_free_irq: free_irq(dev->irq, host); fail: + if (zalon) + iounmap(zalon); ncr53c8xx_release(host); return error; } _ - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html