Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rionet: Remove pointless printk of skb pointer.

Casting to u32 warns anyways.

Signed-off-by: David S. Miller <davem@davemloft.net>

+2 -2
+2 -2
drivers/net/rionet.c
··· 162 162 rnet->tx_slot &= (RIONET_TX_RING_SIZE - 1); 163 163 164 164 if (netif_msg_tx_queued(rnet)) 165 - printk(KERN_INFO "%s: queued skb %8.8x len %8.8x\n", DRV_NAME, 166 - (u32) skb, skb->len); 165 + printk(KERN_INFO "%s: queued skb len %8.8x\n", DRV_NAME, 166 + skb->len); 167 167 168 168 return 0; 169 169 }