[PATCH -next 2/2] spi: bcmbca-hsspi: Use devm_spi_alloc_host()
William Zhang
william.zhang at broadcom.com
Wed Aug 28 12:09:18 PDT 2024
Hi Jinjie,
> -----Original Message-----
> From: Jinjie Ruan <ruanjinjie at huawei.com>
> Sent: Monday, August 26, 2024 5:49 AM
> To: william.zhang at broadcom.com; kursad.oney at broadcom.com;
> jonas.gorski at gmail.com; bcm-kernel-feedback-list at broadcom.com;
> broonie at kernel.org; anand.gore at broadcom.com;
> florian.fainelli at broadcom.com; rafal at milecki.pl;
linux-spi at vger.kernel.org;
> linux-arm-kernel at lists.infradead.org; linux-kernel at vger.kernel.org
> Cc: ruanjinjie at huawei.com
> Subject: [PATCH -next 2/2] spi: bcmbca-hsspi: Use devm_spi_alloc_host()
>
> Use devm_spi_alloc_host() so that there's no need to call
> spi_controller_put() in the error path.
>
> Signed-off-by: Jinjie Ruan <ruanjinjie at huawei.com>
> ---
> drivers/spi/spi-bcmbca-hsspi.c | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/spi/spi-bcmbca-hsspi.c
b/drivers/spi/spi-bcmbca-hsspi.c
> index f465daa473d0..d936104a41ec 100644
> --- a/drivers/spi/spi-bcmbca-hsspi.c
> +++ b/drivers/spi/spi-bcmbca-hsspi.c
> @@ -480,7 +480,7 @@ static int bcmbca_hsspi_probe(struct
> platform_device *pdev)
> }
> }
>
> - host = spi_alloc_host(&pdev->dev, sizeof(*bs));
> + host = devm_spi_alloc_host(&pdev->dev, sizeof(*bs));
> if (!host) {
> ret = -ENOMEM;
> goto out_disable_pll_clk;
> @@ -536,17 +536,17 @@ static int bcmbca_hsspi_probe(struct
> platform_device *pdev)
> ret = devm_request_irq(dev, irq, bcmbca_hsspi_interrupt,
> IRQF_SHARED,
> pdev->name, bs);
> if (ret)
> - goto out_put_host;
> + goto out_disable_pll_clk;
> }
>
> ret = devm_pm_runtime_enable(&pdev->dev);
> if (ret)
> - goto out_put_host;
> + goto out_disable_pll_clk;
>
> ret = sysfs_create_group(&pdev->dev.kobj, &bcmbca_hsspi_group);
> if (ret) {
> dev_err(&pdev->dev, "couldn't register sysfs group\n");
> - goto out_put_host;
> + goto out_disable_pll_clk;
> }
>
> /* register and we are done */
> @@ -560,8 +560,6 @@ static int bcmbca_hsspi_probe(struct
> platform_device *pdev)
>
> out_sysgroup_disable:
> sysfs_remove_group(&pdev->dev.kobj, &bcmbca_hsspi_group);
> -out_put_host:
> - spi_controller_put(host);
> out_disable_pll_clk:
> clk_disable_unprepare(pll_clk);
> out_disable_clk:
> --
> 2.34.1
Reviewed-by: William Zhang <william.zhang at broadcom.com>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 4212 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20240828/f0715b2f/attachment.p7s>
More information about the linux-arm-kernel
mailing list