mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
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>
This commit is contained in:
parent
b16fed0af8
commit
8739cfef1a
@ -359,7 +359,7 @@ fail:
|
||||
|
||||
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;
|
||||
|
||||
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)
|
||||
{
|
||||
pegasus_t *pegasus = (pegasus_t *) netdev_priv(dev);
|
||||
pegasus_t *pegasus = netdev_priv(dev);
|
||||
|
||||
write_mii_word(pegasus, phy_id, loc, val);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user