diff options
author | Amol Lad <amol@verismonetworks.com> | 2006-10-01 02:29:23 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:32 -0400 |
commit | be618f550cb499db263e2ce22c5ad4f4dbfd53e6 (patch) | |
tree | a0ea46641aea148aee5ee5bc46d87b2f2d1a9f88 /drivers/serial/mpc52xx_uart.c | |
parent | 6257b3bdfde4295c04872d710c2419ff8efc1b86 (diff) |
[PATCH] ioremap balanced with iounmap for drivers/serial/mpc52xx_uart.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/serial/mpc52xx_uart.c')
-rw-r--r-- | drivers/serial/mpc52xx_uart.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/drivers/serial/mpc52xx_uart.c b/drivers/serial/mpc52xx_uart.c index 7708e5dd3656..dbad0e31e005 100644 --- a/drivers/serial/mpc52xx_uart.c +++ b/drivers/serial/mpc52xx_uart.c | |||
@@ -338,14 +338,23 @@ mpc52xx_uart_release_port(struct uart_port *port) | |||
338 | static int | 338 | static int |
339 | mpc52xx_uart_request_port(struct uart_port *port) | 339 | mpc52xx_uart_request_port(struct uart_port *port) |
340 | { | 340 | { |
341 | int err; | ||
342 | |||
341 | if (port->flags & UPF_IOREMAP) /* Need to remap ? */ | 343 | if (port->flags & UPF_IOREMAP) /* Need to remap ? */ |
342 | port->membase = ioremap(port->mapbase, MPC52xx_PSC_SIZE); | 344 | port->membase = ioremap(port->mapbase, MPC52xx_PSC_SIZE); |
343 | 345 | ||
344 | if (!port->membase) | 346 | if (!port->membase) |
345 | return -EINVAL; | 347 | return -EINVAL; |
346 | 348 | ||
347 | return request_mem_region(port->mapbase, MPC52xx_PSC_SIZE, | 349 | err = request_mem_region(port->mapbase, MPC52xx_PSC_SIZE, |
348 | "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY; | 350 | "mpc52xx_psc_uart") != NULL ? 0 : -EBUSY; |
351 | |||
352 | if (err && (port->flags & UPF_IOREMAP)) { | ||
353 | iounmap(port->membase); | ||
354 | port->membase = NULL; | ||
355 | } | ||
356 | |||
357 | return err; | ||
349 | } | 358 | } |
350 | 359 | ||
351 | static void | 360 | static void |