Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751294AbWJFEyt (ORCPT ); Fri, 6 Oct 2006 00:54:49 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751799AbWJFEyt (ORCPT ); Fri, 6 Oct 2006 00:54:49 -0400 Received: from mail01.verismonetworks.com ([164.164.99.228]:49845 "EHLO mail01.verismonetworks.com") by vger.kernel.org with ESMTP id S1751294AbWJFEyr (ORCPT ); Fri, 6 Oct 2006 00:54:47 -0400 Subject: [PATCH 3/5] ioremap balanced with iounmap for drivers/char/moxa.c From: Amol Lad To: linux kernel Cc: Andrew Morton Content-Type: text/plain Date: Fri, 06 Oct 2006 10:27:09 +0530 Message-Id: <1160110629.19143.90.camel@amol.verismonetworks.com> Mime-Version: 1.0 X-Mailer: Evolution 2.2.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 996 Lines: 28 Signed-off-by: Amol Lad --- 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/