Browse Source

USB: gadget: Add DEVTYPE support for Ethernet functions

The problem with Ethernet based networking devices is to clearly
identify what's their usage. Special interfaces like bridges, WiFi,
Bluetooth, WiMAX or WWAN are already using DEVTYPE identification.

This patch marks the Ethernet functions of gadgets from the device
type "gadget". Automatic setup of these interfaces can now happen
from userspace without the need of hardcoding the network interface
name.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Marcel Holtmann 15 years ago
parent
commit
aa7907407a
1 changed files with 5 additions and 0 deletions
  1. 5 0
      drivers/usb/gadget/u_ether.c

+ 5 - 0
drivers/usb/gadget/u_ether.c

@@ -746,6 +746,10 @@ static const struct net_device_ops eth_netdev_ops = {
 	.ndo_validate_addr	= eth_validate_addr,
 	.ndo_validate_addr	= eth_validate_addr,
 };
 };
 
 
+static struct device_type gadget_type = {
+	.name	= "gadget",
+};
+
 /**
 /**
  * gether_setup - initialize one ethernet-over-usb link
  * gether_setup - initialize one ethernet-over-usb link
  * @g: gadget to associated with these links
  * @g: gadget to associated with these links
@@ -808,6 +812,7 @@ int __init gether_setup(struct usb_gadget *g, u8 ethaddr[ETH_ALEN])
 
 
 	dev->gadget = g;
 	dev->gadget = g;
 	SET_NETDEV_DEV(net, &g->dev);
 	SET_NETDEV_DEV(net, &g->dev);
+	SET_NETDEV_DEVTYPE(net, &gadget_type);
 
 
 	status = register_netdev(net);
 	status = register_netdev(net);
 	if (status < 0) {
 	if (status < 0) {