mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-04 03:33:58 +08:00
ceed73a2cf
RmNet driver provides a transport agnostic MAP (multiplexing and aggregation protocol) support in embedded module. Module provides virtual network devices which can be attached to any IP-mode physical device. This will be used to provide all MAP functionality on future hardware in a single consistent location. Signed-off-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
296 B
Makefile
14 lines
296 B
Makefile
#
|
|
# Makefile for the Qualcomm network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_QCA7000) += qca_7k_common.o
|
|
obj-$(CONFIG_QCA7000_SPI) += qcaspi.o
|
|
qcaspi-objs := qca_7k.o qca_debug.o qca_spi.o
|
|
obj-$(CONFIG_QCA7000_UART) += qcauart.o
|
|
qcauart-objs := qca_uart.o
|
|
|
|
obj-y += emac/
|
|
|
|
obj-$(CONFIG_RMNET) += rmnet/
|