Skip to content

Commit

Permalink
[PATCH] ioremap balanced with iounmap for drivers/serial/mux.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Amol Lad authored and Linus Torvalds committed Oct 1, 2006
1 parent a141a04 commit af907dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/serial/mux.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit af907dc

Please sign in to comment.