diff options
author | Simon Glass | 2011-02-16 11:14:34 -0800 |
---|---|---|
committer | Remy Bohmer | 2011-02-19 20:32:36 +0100 |
commit | 9b70e00773f0c76a243816b8ec134c3c7dacd531 (patch) | |
tree | 17ed4dce27f534c2b281859665bf79d503393c89 /drivers/usb/eth/Makefile | |
parent | 89d48367edbc878f86db3008a4107331ef07f578 (diff) |
Add support for ASIX AX88772 USB 2.0 10/100Mbit Ethernet Adaptor
Driver originally written by NVIDIA Corporation, modified to
handle odd-length packets.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/usb/eth/Makefile')
-rw-r--r-- | drivers/usb/eth/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/eth/Makefile b/drivers/usb/eth/Makefile index a0f56765b38..6a5f25a3861 100644 --- a/drivers/usb/eth/Makefile +++ b/drivers/usb/eth/Makefile @@ -25,6 +25,9 @@ LIB := $(obj)libusb_eth.a # new USB host ethernet layer dependencies COBJS-$(CONFIG_USB_HOST_ETHER) += usb_ether.o +ifdef CONFIG_USB_ETHER_ASIX +COBJS-y += asix.o +endif COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) |