lkml.org 
[lkml]   [2021]   [Jul]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v3] serial: samsung: Checks the return value of function
From
Date
On 06. 07. 21, 8:19, Tamseel Shams wrote:
> "uart_add_one_port" function call may fail and return
> some error code, so adding a check for return value.
> If it is returning some error code, then displaying the
> result, unregistering the driver and then returning from
> probe function with error code.
>
> Signed-off-by: Tamseel Shams <m.shams@samsung.com>
> ---
> Changes since v1:
> 1. Added support to unregister driver on failure of "uart_add_one_port"
> function call.
> 2. Commit message updated.
>
> Changes since v2:
> 1. Added support to unwind clocks on failure of "uart_add_one_port"
> function call.
>
> drivers/tty/serial/samsung_tty.c | 17 ++++++++++++++++-
> 1 file changed, 16 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/tty/serial/samsung_tty.c b/drivers/tty/serial/samsung_tty.c
> index 9fbc61151c2e..a3f3a17fb54b 100644
> --- a/drivers/tty/serial/samsung_tty.c
> +++ b/drivers/tty/serial/samsung_tty.c
> @@ -2253,7 +2253,11 @@ static int s3c24xx_serial_probe(struct platform_device *pdev)
> }
>
> dev_dbg(&pdev->dev, "%s: adding port\n", __func__);
> - uart_add_one_port(&s3c24xx_uart_drv, &ourport->port);
> + ret = uart_add_one_port(&s3c24xx_uart_drv, &ourport->port);
> + if (ret < 0) {
> + dev_err(&pdev->dev, "Failed to add uart port, err %d\n", ret);
> + goto add_port_error;
> + }
> platform_set_drvdata(pdev, &ourport->port);
>
> /*
> @@ -2272,6 +2276,17 @@ static int s3c24xx_serial_probe(struct platform_device *pdev)
> probe_index++;
>
> return 0;
> +
> +add_port_error:
> + ourport->port.mapbase = 0;
> + clk_disable_unprepare(ourport->clk);
> + clk_put(ourport->clk);
> + if (!IS_ERR(ourport->baudclk)) {
> + clk_disable_unprepare(ourport->baudclk);
> + clk_put(ourport->baudclk);
> + }


LGTM, now I only wonder why s3c24xx_serial_remove() does not put clocks?

> + uart_unregister_driver(&s3c24xx_uart_drv);
> + return ret;
> }
>
> static int s3c24xx_serial_remove(struct platform_device *dev)
>


--
js
suse labs

\
 
 \ /
  Last update: 2021-07-07 10:14    [W:0.197 / U:0.240 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site