public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next 1/2] tsnep: fix resource_size.cocci warnings
@ 2021-11-24  2:36 Yang Li
  2021-11-24  2:36 ` [PATCH -next 2/2] tsnep: fix platform_no_drv_owner.cocci warning Yang Li
  2021-11-24 20:28 ` [PATCH -next 1/2] tsnep: fix resource_size.cocci warnings Gerhard Engleder
  0 siblings, 2 replies; 5+ messages in thread
From: Yang Li @ 2021-11-24  2:36 UTC (permalink / raw)
  To: davem; +Cc: kuba, netdev, linux-kernel, Yang Li

Use resource_size function on resource object
instead of explicit computation.

Clean up coccicheck warning:
./drivers/net/ethernet/engleder/tsnep_main.c:1155:21-24: ERROR: Missing
resource_size with io

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---
 drivers/net/ethernet/engleder/tsnep_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/engleder/tsnep_main.c b/drivers/net/ethernet/engleder/tsnep_main.c
index 6a7feb2..c48e8ea 100644
--- a/drivers/net/ethernet/engleder/tsnep_main.c
+++ b/drivers/net/ethernet/engleder/tsnep_main.c
@@ -1152,7 +1152,7 @@ static int tsnep_probe(struct platform_device *pdev)
 	adapter->addr = devm_ioremap_resource(&pdev->dev, io);
 	if (IS_ERR(adapter->addr))
 		return PTR_ERR(adapter->addr);
-	adapter->size = io->end - io->start + 1;
+	adapter->size = resource_size(io);
 	adapter->irq = platform_get_irq(pdev, 0);
 	netdev->mem_start = io->start;
 	netdev->mem_end = io->end;
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-11-25  2:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-24  2:36 [PATCH -next 1/2] tsnep: fix resource_size.cocci warnings Yang Li
2021-11-24  2:36 ` [PATCH -next 2/2] tsnep: fix platform_no_drv_owner.cocci warning Yang Li
2021-11-24 20:32   ` Gerhard Engleder
2021-11-25  2:11     ` Jakub Kicinski
2021-11-24 20:28 ` [PATCH -next 1/2] tsnep: fix resource_size.cocci warnings Gerhard Engleder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox