]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net/pasemi: fix compiler warning
authorStephen Rothwell <sfr@canb.auug.org.au>
Thu, 3 May 2012 00:51:46 +0000 (10:51 +1000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 3 May 2012 00:52:48 +0000 (20:52 -0400)
Fix this compiler warning (on PowerPC) by not marking a parameter as
const:

drivers/net/ethernet/pasemi/pasemi_mac.c: In function 'pasemi_mac_replenish_rx_ring':
drivers/net/ethernet/pasemi/pasemi_mac.c:646:3: warning: passing argument 1 of 'netdev_alloc_skb' discards qualifiers from pointer target type
include/linux/skbuff.h:1706:31: note: expected 'struct net_device *' but argument is of type 'const struct net_device *'

Cc: Olof Johansson <olof@lixom.net>
Cc: Pradeep A. Dalvi <netdev@pradeepdalvi.com>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/pasemi/pasemi_mac.c

index ddc95b0ac78d87d8d9754bf581c983ffccec1ff2..e559dfa06d6ace1c349cf48efe33738ef642e778 100644 (file)
@@ -623,7 +623,7 @@ static void pasemi_mac_free_rx_resources(struct pasemi_mac *mac)
        mac->rx = NULL;
 }
 
-static void pasemi_mac_replenish_rx_ring(const struct net_device *dev,
+static void pasemi_mac_replenish_rx_ring(struct net_device *dev,
                                         const int limit)
 {
        const struct pasemi_mac *mac = netdev_priv(dev);