From: Hal Feng Date: Tue, 4 Jun 2024 08:47:28 +0000 (+0800) Subject: serial: 8250_dw: Use reset array API to get resets X-Git-Tag: v6.11-rc1~103^2~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=41424f5c3bef47ff1eedaf1f90e7ae37f1b1c165;p=thirdparty%2Fkernel%2Flinux.git serial: 8250_dw: Use reset array API to get resets Some SoCs like StarFive JH7110 require two or more resets. So change to use the reset array API to get resets. Signed-off-by: Hal Feng Link: https://lore.kernel.org/r/20240604084729.57239-3-hal.feng@starfivetech.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/8250/8250_dw.c b/drivers/tty/serial/8250/8250_dw.c index fb809e32c6ae2..ab9e7f2042602 100644 --- a/drivers/tty/serial/8250/8250_dw.c +++ b/drivers/tty/serial/8250/8250_dw.c @@ -616,7 +616,7 @@ static int dw8250_probe(struct platform_device *pdev) if (IS_ERR(data->pclk)) return PTR_ERR(data->pclk); - data->rst = devm_reset_control_get_optional_exclusive(dev, NULL); + data->rst = devm_reset_control_array_get_optional_exclusive(dev); if (IS_ERR(data->rst)) return PTR_ERR(data->rst);