All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] net: ethernet: 3c515: Fix cast from pointer to integer of different size
@ 2020-01-04 14:33 Krzysztof Kozlowski
  2020-01-04 14:33 ` [PATCH 2/2] net: ethernet: ni65: " Krzysztof Kozlowski
  2020-01-06 21:31 ` [PATCH 1/2] net: ethernet: 3c515: " David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2020-01-04 14:33 UTC (permalink / raw)
  To: David S. Miller, Krzysztof Kozlowski, netdev, linux-kernel

Pointer passed as integer should be cast to unsigned long to
avoid warning (compile testing on alpha architecture):

    drivers/net/ethernet/3com/3c515.c: In function ‘corkscrew_start_xmit’:
    drivers/net/ethernet/3com/3c515.c:1066:8: warning:
        cast from pointer to integer of different size [-Wpointer-to-int-cast]

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>

---

Only compile tested
---
 drivers/net/ethernet/3com/3c515.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/3com/3c515.c b/drivers/net/ethernet/3com/3c515.c
index 1e233e2f0a5a..f5b4cacef07a 100644
--- a/drivers/net/ethernet/3com/3c515.c
+++ b/drivers/net/ethernet/3com/3c515.c
@@ -1063,7 +1063,7 @@ static netdev_tx_t corkscrew_start_xmit(struct sk_buff *skb,
 #ifdef VORTEX_BUS_MASTER
 	if (vp->bus_master) {
 		/* Set the bus-master controller to transfer the packet. */
-		outl((int) (skb->data), ioaddr + Wn7_MasterAddr);
+		outl((unsigned long)(skb->data), ioaddr + Wn7_MasterAddr);
 		outw((skb->len + 3) & ~3, ioaddr + Wn7_MasterLen);
 		vp->tx_skb = skb;
 		outw(StartDMADown, ioaddr + EL3_CMD);
-- 
2.17.1


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

end of thread, other threads:[~2020-01-07  8:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-04 14:33 [PATCH 1/2] net: ethernet: 3c515: Fix cast from pointer to integer of different size Krzysztof Kozlowski
2020-01-04 14:33 ` [PATCH 2/2] net: ethernet: ni65: " Krzysztof Kozlowski
2020-01-06 21:31 ` [PATCH 1/2] net: ethernet: 3c515: " David Miller
2020-01-07  8:35   ` Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.