mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 19:28:36 +00:00
df4fb1c36d
introduce an 'mcs7830' driver for Moschip MCS7830 based (7730/7830/7832) USB 2.0 Ethernet Devices see "MCS7830 -- USB 2.0 to 10/100M Fast Ethernet Controller" at http://www.asix.com.tw/products.php?op=pItemdetail&PItemID=109;74;109 the driver was implemented based on the U-Boot Asix driver with additional information gathered from the Moschip Linux driver, development was done on "Delock 61147" and "Logilink UA0025C" dongles Signed-off-by: Gerhard Sittig <gsi@denx.de> Acked-by: Marek Vasut <marex@denx.de>
12 lines
316 B
Makefile
12 lines
316 B
Makefile
#
|
|
# Copyright (c) 2011 The Chromium OS Authors.
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
# new USB host ethernet layer dependencies
|
|
obj-$(CONFIG_USB_HOST_ETHER) += usb_ether.o
|
|
ifdef CONFIG_USB_ETHER_ASIX
|
|
obj-y += asix.o
|
|
endif
|
|
obj-$(CONFIG_USB_ETHER_MCS7830) += mcs7830.o
|
|
obj-$(CONFIG_USB_ETHER_SMSC95XX) += smsc95xx.o
|