drivers/isdn/i4l: 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:
@@ -1221,7 +1221,7 @@ isdn_ppp_xmit(struct sk_buff *skb, struct net_device *netdev)
|
||||
struct ippp_struct *ipt,*ipts;
|
||||
int slot, retval = NETDEV_TX_OK;
|
||||
|
||||
mlp = (isdn_net_local *) netdev_priv(netdev);
|
||||
mlp = netdev_priv(netdev);
|
||||
nd = mlp->netdev; /* get master lp */
|
||||
|
||||
slot = mlp->ppp_slot;
|
||||
@@ -1985,7 +1985,7 @@ isdn_ppp_dev_ioctl_stats(int slot, struct ifreq *ifr, struct net_device *dev)
|
||||
{
|
||||
struct ppp_stats __user *res = ifr->ifr_data;
|
||||
struct ppp_stats t;
|
||||
isdn_net_local *lp = (isdn_net_local *) netdev_priv(dev);
|
||||
isdn_net_local *lp = netdev_priv(dev);
|
||||
|
||||
if (!access_ok(VERIFY_WRITE, res, sizeof(struct ppp_stats)))
|
||||
return -EFAULT;
|
||||
@@ -2024,7 +2024,7 @@ isdn_ppp_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
|
||||
{
|
||||
int error=0;
|
||||
int len;
|
||||
isdn_net_local *lp = (isdn_net_local *) netdev_priv(dev);
|
||||
isdn_net_local *lp = netdev_priv(dev);
|
||||
|
||||
|
||||
if (lp->p_encap != ISDN_NET_ENCAP_SYNCPPP)
|
||||
@@ -2091,7 +2091,7 @@ isdn_ppp_dial_slave(char *name)
|
||||
|
||||
sdev = lp->slave;
|
||||
while (sdev) {
|
||||
isdn_net_local *mlp = (isdn_net_local *) netdev_priv(sdev);
|
||||
isdn_net_local *mlp = netdev_priv(sdev);
|
||||
if (!(mlp->flags & ISDN_NET_CONNECTED))
|
||||
break;
|
||||
sdev = mlp->slave;
|
||||
@@ -2099,7 +2099,7 @@ isdn_ppp_dial_slave(char *name)
|
||||
if (!sdev)
|
||||
return 2;
|
||||
|
||||
isdn_net_dial_req((isdn_net_local *) netdev_priv(sdev));
|
||||
isdn_net_dial_req(netdev_priv(sdev));
|
||||
return 0;
|
||||
#else
|
||||
return -1;
|
||||
@@ -2122,7 +2122,7 @@ isdn_ppp_hangup_slave(char *name)
|
||||
|
||||
sdev = lp->slave;
|
||||
while (sdev) {
|
||||
isdn_net_local *mlp = (isdn_net_local *) netdev_priv(sdev);
|
||||
isdn_net_local *mlp = netdev_priv(sdev);
|
||||
|
||||
if (mlp->slave) { /* find last connected link in chain */
|
||||
isdn_net_local *nlp = ISDN_SLAVE_PRIV(mlp);
|
||||
|
Reference in New Issue
Block a user