serial: sccnxp: missing uart_unregister_driver() on error in sccnxp_probe()
Add the missing uart_unregister_driver() before return from sccnxp_probe() in the error handling case. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
18d8519d35
commit
7a95b815da
|
@ -986,6 +986,7 @@ static int sccnxp_probe(struct platform_device *pdev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uart_unregister_driver(&s->uart);
|
||||||
err_out:
|
err_out:
|
||||||
if (!IS_ERR(s->regulator))
|
if (!IS_ERR(s->regulator))
|
||||||
return regulator_disable(s->regulator);
|
return regulator_disable(s->regulator);
|
||||||
|
|
Loading…
Reference in New Issue