mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
d2c3197922
Add support for Microchip LAN7500, LAN7800 and LAN7850, USB to 10/100/1000 Ethernet Controllers. Signed-off-by: Yuiko Oshino <yuiko.oshino@microchip.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
14 lines
514 B
Makefile
14 lines
514 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
|
|
obj-$(CONFIG_USB_ETHER_ASIX) += asix.o
|
|
obj-$(CONFIG_USB_ETHER_ASIX88179) += asix88179.o
|
|
obj-$(CONFIG_USB_ETHER_MCS7830) += mcs7830.o
|
|
obj-$(CONFIG_USB_ETHER_SMSC95XX) += smsc95xx.o
|
|
obj-$(CONFIG_USB_ETHER_LAN75XX) += lan7x.o lan75xx.o
|
|
obj-$(CONFIG_USB_ETHER_LAN78XX) += lan7x.o lan78xx.o
|
|
obj-$(CONFIG_USB_ETHER_RTL8152) += r8152.o r8152_fw.o
|