diff options
author | Amol Lad <amol@verismonetworks.com> | 2006-10-01 06:29:25 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 07:39:32 (GMT) |
commit | af907dc8cd4157d629e48533b3400786467340d5 (patch) | |
tree | 9eaba954eed9be9133a60a94e342fef46b8f9a03 /drivers | |
parent | a141a04330bd6eadf7081a0860dc786be7d09c46 (diff) | |
download | linux-af907dc8cd4157d629e48533b3400786467340d5.tar.xz |
[PATCH] ioremap balanced with iounmap for drivers/serial/mux.c
ioremap must be balanced by an iounmap and failing to do so can result
in a memory leak.
Signed-off-by: Amol Lad <amol@verismonetworks.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/serial/mux.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/serial/mux.c b/drivers/serial/mux.c index 4a1c998..aa819d3 100644 --- a/drivers/serial/mux.c +++ b/drivers/serial/mux.c @@ -521,6 +521,8 @@ static void __exit mux_exit(void) for (i = 0; i < port_cnt; i++) { uart_remove_one_port(&mux_driver, &mux_ports[i]); + if (mux_ports[i].membase) + iounmap(mux_ports[i].membase); } uart_unregister_driver(&mux_driver); |