Pārlūkot izejas kodu

wireless: wext: remove ndo_do_ioctl fallback

There are no longer any drivers (in the tree proper, I didn't
check all the staging drivers) that take WEXT ioctls through
this API, the only remaining ones that even have ndo_do_ioctl
are using it only for private ioctls.

Therefore, we can remove this call.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Johannes Berg 8 gadi atpakaļ
vecāks
revīzija
8bfb367660
1 mainītis faili ar 0 papildinājumiem un 3 dzēšanām
  1. 0 3
      net/wireless/wext-core.c

+ 0 - 3
net/wireless/wext-core.c

@@ -957,9 +957,6 @@ static int wireless_process_ioctl(struct net *net, struct ifreq *ifr,
 		else if (private)
 		else if (private)
 			return private(dev, iwr, cmd, info, handler);
 			return private(dev, iwr, cmd, info, handler);
 	}
 	}
-	/* Old driver API : call driver ioctl handler */
-	if (dev->netdev_ops->ndo_do_ioctl)
-		return dev->netdev_ops->ndo_do_ioctl(dev, ifr, cmd);
 	return -EOPNOTSUPP;
 	return -EOPNOTSUPP;
 }
 }