]> 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>
Sat, 23 Sep 2023 08:46:58 +0000 (10:46 +0200)
[ Upstream commit 5abd01145d0cc6cd1b7c2fe6ee0b9ea0fa13671e ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/tty/serial/serial-tegra.c

index a13d6d4674bcc715e6d92e8db4abbd5cece23701..05e522be94669c471fc504c6676280403a1d5d53 100644 (file)
@@ -827,7 +827,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);