Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c9cedbba authored by Dan Williams's avatar Dan Williams Committed by David S. Miller
Browse files

ipheth: remove incorrect devtype to WWAN



The 'wwan' devtype is meant for devices that require preconfiguration
and *every* time setup before the ethernet interface can be used, like
cellular modems which require a series of setup commands on serial ports
or other mechanisms before the ethernet interface will handle packets.

As ipheth only requires one-per-hotplug pairing setup with no
preconfiguration (like APN, phone #, etc) and the network interface is
usable at any time after that initial setup, remove the incorrect
devtype wwan.

Signed-off-by: default avatarDan Williams <dcbw@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 201b6bab
Loading
Loading
Loading
Loading
+1 −6
Original line number Original line Diff line number Diff line
@@ -429,10 +429,6 @@ static const struct net_device_ops ipheth_netdev_ops = {
	.ndo_get_stats = &ipheth_stats,
	.ndo_get_stats = &ipheth_stats,
};
};


static struct device_type ipheth_type = {
	.name	= "wwan",
};

static int ipheth_probe(struct usb_interface *intf,
static int ipheth_probe(struct usb_interface *intf,
			const struct usb_device_id *id)
			const struct usb_device_id *id)
{
{
@@ -450,7 +446,7 @@ static int ipheth_probe(struct usb_interface *intf,


	netdev->netdev_ops = &ipheth_netdev_ops;
	netdev->netdev_ops = &ipheth_netdev_ops;
	netdev->watchdog_timeo = IPHETH_TX_TIMEOUT;
	netdev->watchdog_timeo = IPHETH_TX_TIMEOUT;
	strcpy(netdev->name, "wwan%d");
	strcpy(netdev->name, "eth%d");


	dev = netdev_priv(netdev);
	dev = netdev_priv(netdev);
	dev->udev = udev;
	dev->udev = udev;
@@ -500,7 +496,6 @@ static int ipheth_probe(struct usb_interface *intf,


	SET_NETDEV_DEV(netdev, &intf->dev);
	SET_NETDEV_DEV(netdev, &intf->dev);
	SET_ETHTOOL_OPS(netdev, &ops);
	SET_ETHTOOL_OPS(netdev, &ops);
	SET_NETDEV_DEVTYPE(netdev, &ipheth_type);


	retval = register_netdev(netdev);
	retval = register_netdev(netdev);
	if (retval) {
	if (retval) {