summaryrefslogtreecommitdiffstats
path: root/drivers/usb/net/Makefile
diff options
context:
space:
mode:
authorDavid Brownell2005-08-31 18:53:10 +0200
committerGreg Kroah-Hartman2005-09-09 01:28:31 +0200
commit2e55cc7210fef90f88201e860d8767594974574e (patch)
tree6e2a9a9a5a974a5ac6f1b76c36a4aab01d8d2fe5 /drivers/usb/net/Makefile
parent[PATCH] USB: usbnet (2/9) module for simple network links (diff)
downloadkernel-qcow2-linux-2e55cc7210fef90f88201e860d8767594974574e.tar.gz
kernel-qcow2-linux-2e55cc7210fef90f88201e860d8767594974574e.tar.xz
kernel-qcow2-linux-2e55cc7210fef90f88201e860d8767594974574e.zip
[PATCH] USB: usbnet (3/9) module for ASIX Ethernet adapters
This patch moves the ASIX AX8817x driver into its own file, just using the "usbnet" infrastructure as a utility library. - As with "cdc_subset" this involved minor Kconfig/kbuild tweaks, moving code from one file to another, and exporting a few functions. - This includes updates from Jamie Painter to add (and use) a new hook to handle the different maximum transfer sizes for rx and tx sides. - Also from Jamie, some bugfixes: * MDIO byteorder (to address some PPC media negotiation problems); * Force alignment at key spots when using ax88772 framing (on some embedded hardware, the network stack will break otherwise); * Address some link reset problems. It also makes this driver use the standard (5 seconds vs half second) control timeouts used elsewhere in USB; and wraps a few lines before the 80th column (which previously needed it). Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/net/Makefile')
-rw-r--r--drivers/usb/net/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/net/Makefile b/drivers/usb/net/Makefile
index 23608ccc6380..60dc91e5cdbf 100644
--- a/drivers/usb/net/Makefile
+++ b/drivers/usb/net/Makefile
@@ -6,6 +6,7 @@ obj-$(CONFIG_USB_CATC) += catc.o
obj-$(CONFIG_USB_KAWETH) += kaweth.o
obj-$(CONFIG_USB_PEGASUS) += pegasus.o
obj-$(CONFIG_USB_RTL8150) += rtl8150.o
+obj-$(CONFIG_USB_NET_AX8817X) += asix.o
obj-$(CONFIG_USB_NET_CDC_SUBSET) += cdc_subset.o
obj-$(CONFIG_USB_USBNET) += usbnet.o
obj-$(CONFIG_USB_ZD1201) += zd1201.o