serial: tegra: handle clk prepare error in tegra_uart_hw_init()

[ Upstream commit 5abd01145d ]

In tegra_uart_hw_init(), the return value of clk_prepare_enable() should
be checked since it might fail.

Fixes: e9ea096dd2 ("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>
This commit is contained in:
Yi Yang 2023-08-17 18:54:06 +08:00 committed by Greg Kroah-Hartman
parent 86017523b8
commit 7a9af64f7b
1 changed files with 5 additions and 1 deletions

View File

@ -998,7 +998,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);