Messages in this thread Patch in this message |  | | | Subject | [PATCH 3/5] ioremap balanced with iounmap for drivers/char/moxa.c | | From | Amol Lad <> | | Date | Fri, 06 Oct 2006 10:27:09 +0530 |
Signed-off-by: Amol Lad <amol@verismonetworks.com> --- moxa.c | 6 ++++++ 1 files changed, 6 insertions(+) --- diff -uprN -X linux-2.6.19-rc1-orig/Documentation/dontdiff linux-2.6.19-rc1-orig/drivers/char/moxa.c linux-2.6.19-rc1/drivers/char/moxa.c --- linux-2.6.19-rc1-orig/drivers/char/moxa.c 2006-10-05 14:00:43.000000000 +0530 +++ linux-2.6.19-rc1/drivers/char/moxa.c 2006-10-05 14:50:00.000000000 +0530 @@ -493,6 +493,12 @@ static void __exit moxa_exit(void) if (tty_unregister_driver(moxaDriver)) printk("Couldn't unregister MOXA Intellio family serial driver\n"); put_tty_driver(moxaDriver); + + for (i = 0; i < MAX_BOARDS; i++) { + if (moxaBaseAddr[i]) + iounmap(moxaBaseAddr[i]); + } + if (verbose) printk("Done\n"); }
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |