[<prev] [next>] [day] [month] [year] [list]
Message-ID: <28b3e6b0-0090-4256-8dd6-5a01fc4bd576@web.de>
Date: Mon, 20 Oct 2025 15:00:13 +0200
From: Markus Elfring <Markus.Elfring@....de>
To: 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>
Cc: kernel-janitors@...r.kernel.org, LKML <linux-kernel@...r.kernel.org>,
Anand Moon <linux.amoon@...il.com>,
Christophe Jaillet <christophe.jaillet@...adoo.fr>
Subject: [PATCH] misc: rp1: Omit two variable reassignments in rp1_probe()
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>
---
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