summaryrefslogtreecommitdiff
path: root/drivers/usb/eth/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-06-13 16:13:09 -0700
committerRemy Bohmer <linux@bohmer.net>2011-08-08 21:05:23 +0200
commit291391bed566a569a80b50c924a7c43747abc1b5 (patch)
tree02d280a4d24d650a41fd8c5e17914279d174e4fc /drivers/usb/eth/Makefile
parentfa82f871c8dbc9a15e8dc274b3f99dd5fa0da458 (diff)
downloadu-boot-imx-291391bed566a569a80b50c924a7c43747abc1b5.zip
u-boot-imx-291391bed566a569a80b50c924a7c43747abc1b5.tar.gz
u-boot-imx-291391bed566a569a80b50c924a7c43747abc1b5.tar.bz2
Add support for SMSC95XX USB 2.0 10/100MBit Ethernet Adapter
The SMSC95XX is a USB hub with a built-in Ethernet adapter. This adds support for this, using the USB host network framework. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Eric BĂ©nard <eric@eukrea.com>
Diffstat (limited to 'drivers/usb/eth/Makefile')
-rw-r--r--drivers/usb/eth/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/eth/Makefile b/drivers/usb/eth/Makefile
index a8e9eff..51b5b46 100644
--- a/drivers/usb/eth/Makefile
+++ b/drivers/usb/eth/Makefile
@@ -28,6 +28,7 @@ COBJS-$(CONFIG_USB_HOST_ETHER) += usb_ether.o
ifdef CONFIG_USB_ETHER_ASIX
COBJS-y += asix.o
endif
+COBJS-$(CONFIG_USB_ETHER_SMSC95XX) += smsc95xx.o
COBJS := $(COBJS-y)
SRCS := $(COBJS:.o=.c)