[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:
committed by
Paul Mackerras
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);
|
struct uart_port *port = dev_get_drvdata(&op->dev);
|
||||||
dev_set_drvdata(&op->dev, NULL);
|
dev_set_drvdata(&op->dev, NULL);
|
||||||
|
|
||||||
if (port)
|
if (port) {
|
||||||
uart_remove_one_port(&mpc52xx_uart_driver, port);
|
uart_remove_one_port(&mpc52xx_uart_driver, port);
|
||||||
|
irq_dispose_mapping(port->irq);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user