[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <aPdc3Zm4GrJUs9s3@apocalypse>
Date: Tue, 21 Oct 2025 12:13:49 +0200
From: Andrea della Porta <andrea.porta@...e.com>
To: Markus Elfring <Markus.Elfring@....de>
Cc: Andrea della Porta <andrea.porta@...e.com>,
Arnd Bergmann <arnd@...db.de>, Bjorn Helgaas <bhelgaas@...gle.com>,
Florian Fainelli <florian.fainelli@...adcom.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
kernel-janitors@...r.kernel.org,
LKML <linux-kernel@...r.kernel.org>,
Anand Moon <linux.amoon@...il.com>,
Christophe Jaillet <christophe.jaillet@...adoo.fr>
Subject: Re: [PATCH] misc: rp1: Omit two variable reassignments in rp1_probe()
Hi Markus,
thanks for your patch!
On 15:00 Mon 20 Oct , Markus Elfring wrote:
> From: Markus Elfring <elfring@...rs.sourceforge.net>
> Date: Mon, 20 Oct 2025 14:51:43 +0200
> Subject: [PATCH] misc: rp1: Omit two variable reassignments in rp1_probe()
>
> An error code was assigned to a variable and checked accordingly.
> This value was passed to a dev_err_probe() call in an if branch.
> This function is documented in the way that the same value is returned.
> Thus delete two redundant variable reassignments.
>
> The source code was transformed by using the Coccinelle software.
>
> Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
Reviewed-by: Andrea della Porta <andrea.porta@...e.com>
> ---
> drivers/misc/rp1/rp1_pci.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/misc/rp1/rp1_pci.c b/drivers/misc/rp1/rp1_pci.c
> index 803832006ec8..3baea1a24549 100644
> --- a/drivers/misc/rp1/rp1_pci.c
> +++ b/drivers/misc/rp1/rp1_pci.c
> @@ -226,8 +226,7 @@ static int rp1_probe(struct pci_dev *pdev, const struct pci_device_id *id)
>
> err = pcim_enable_device(pdev);
> if (err < 0) {
> - err = dev_err_probe(&pdev->dev, err,
> - "Enabling PCI device has failed");
> + dev_err_probe(&pdev->dev, err, "Enabling PCI device has failed");
> goto err_put_node;
> }
>
> @@ -243,8 +242,7 @@ static int rp1_probe(struct pci_dev *pdev, const struct pci_device_id *id)
> err = pci_alloc_irq_vectors(pdev, RP1_INT_END, RP1_INT_END,
> PCI_IRQ_MSIX);
> if (err < 0) {
> - err = dev_err_probe(&pdev->dev, err,
> - "Failed to allocate MSI-X vectors\n");
> + dev_err_probe(&pdev->dev, err, "Failed to allocate MSI-X vectors\n");
> goto err_put_node;
> } else if (err != RP1_INT_END) {
> dev_err(&pdev->dev, "Cannot allocate enough interrupts\n");
> --
> 2.51.1
>
Powered by blists - more mailing lists