[PATCH linux-next] octeontx2-af: Remove redundant assignment and parentheses

Subsystems: marvell gigabit ethernet drivers (skge/sky2), networking drivers, the rest

STALE1758d

2 messages, 2 authors, 2021-10-22 · open the first message on its own page

[PATCH linux-next] octeontx2-af: Remove redundant assignment and parentheses

From: luo penghao <hidden>
Date: 2021-10-22 09:53:36

The variable err will be reassigned on subsequent branches, and this
assignment does not perform related value operations. This will cause
the double parentheses to be redundant, so the inner parentheses should
be deleted.

clang_analyzer complains as follows:

drivers/net/ethernet/marvell/sky2.c:4988: warning:

Although the value stored to 'err' is used in the enclosing expression,
the value is never actually read from 'err'.

Reported-by: Zeal Robot <redacted>
Signed-off-by: luo penghao <redacted>
---
 drivers/net/ethernet/marvell/sky2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/marvell/sky2.c b/drivers/net/ethernet/marvell/sky2.c
index 8b8bff5..33558aa 100644
--- a/drivers/net/ethernet/marvell/sky2.c
+++ b/drivers/net/ethernet/marvell/sky2.c
@@ -4985,7 +4985,7 @@ static int sky2_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
 	pci_set_master(pdev);
 
 	if (sizeof(dma_addr_t) > sizeof(u32) &&
-	    !(err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)))) {
+	    !dma_set_mask(&pdev->dev, DMA_BIT_MASK(64))) {
 		using_dac = 1;
 		err = dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64));
 		if (err < 0) {
-- 
2.15.2

Re: [PATCH linux-next] octeontx2-af: Remove redundant assignment and parentheses

From: Jakub Kicinski <kuba@kernel.org>
Date: 2021-10-22 18:06:17

On Fri, 22 Oct 2021 09:53:21 +0000 luo penghao wrote:
Subject: [PATCH linux-next] octeontx2-af: Remove redundant assignment and parentheses
octeontx2-af ? I don't think so:
 drivers/net/ethernet/marvell/sky2.c | 2 +-
Please make sure you CC _all_ maintainers of the driver.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help