mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
[POWERPC] Dispose irq mapping when done in mpc52xx_serial.c
Signed-off-by: Sylvain Munaut <tnt@246tNt.com> Acked-by: Grant Likely <grant.likely@secretlab.ca> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
5d30bf3097
commit
fc7900bb04
@ -995,8 +995,10 @@ mpc52xx_uart_of_remove(struct of_device *op)
|
||||
struct uart_port *port = dev_get_drvdata(&op->dev);
|
||||
dev_set_drvdata(&op->dev, NULL);
|
||||
|
||||
if (port)
|
||||
if (port) {
|
||||
uart_remove_one_port(&mpc52xx_uart_driver, port);
|
||||
irq_dispose_mapping(port->irq);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user