Răsfoiți Sursa

drivers/net/usb: Remove unnecessary casts of netdev_priv

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Joe Perches 14 ani în urmă
părinte
comite
8739cfef1a
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      drivers/net/usb/pegasus.c

+ 2 - 2
drivers/net/usb/pegasus.c

@@ -359,7 +359,7 @@ fail:
 
 
 static int mdio_read(struct net_device *dev, int phy_id, int loc)
 static int mdio_read(struct net_device *dev, int phy_id, int loc)
 {
 {
-	pegasus_t *pegasus = (pegasus_t *) netdev_priv(dev);
+	pegasus_t *pegasus = netdev_priv(dev);
 	u16 res;
 	u16 res;
 
 
 	read_mii_word(pegasus, phy_id, loc, &res);
 	read_mii_word(pegasus, phy_id, loc, &res);
@@ -397,7 +397,7 @@ fail:
 
 
 static void mdio_write(struct net_device *dev, int phy_id, int loc, int val)
 static void mdio_write(struct net_device *dev, int phy_id, int loc, int val)
 {
 {
-	pegasus_t *pegasus = (pegasus_t *) netdev_priv(dev);
+	pegasus_t *pegasus = netdev_priv(dev);
 
 
 	write_mii_word(pegasus, phy_id, loc, val);
 	write_mii_word(pegasus, phy_id, loc, val);
 }
 }