]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
serial: tegra: handle clk prepare error in tegra_uart_hw_init()
authorYi Yang <yiyang13@huawei.com>
Thu, 17 Aug 2023 10:54:06 +0000 (18:54 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 Aug 2023 13:29:18 +0000 (15:29 +0200)
In tegra_uart_hw_init(), the return value of clk_prepare_enable() should
be checked since it might fail.

Fixes: e9ea096dd225 ("serial: tegra: add serial driver")
Signed-off-by: Yi Yang <yiyang13@huawei.com>
Link: https://lore.kernel.org/r/20230817105406.228674-1-yiyang13@huawei.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/serial-tegra.c

index 0b597b282fce2ae68c93f3b2c3c7661667adceeb..d4ec943cb8e97c27dca525163b27fbaac73bb2f0 100644 (file)
@@ -996,7 +996,11 @@ static int tegra_uart_hw_init(struct tegra_uart_port *tup)
        tup->ier_shadow = 0;
        tup->current_baud = 0;
 
-       clk_prepare_enable(tup->uart_clk);
+       ret = clk_prepare_enable(tup->uart_clk);
+       if (ret) {
+               dev_err(tup->uport.dev, "could not enable clk\n");
+               return ret;
+       }
 
        /* Reset the UART controller to clear all previous status.*/
        reset_control_assert(tup->rst);