mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
aa730a9905
Add new wwan driver for MBIM over MHI. MBIM is a transport protocol for IP packets, allowing packet aggregation and muxing. Initially designed for USB bus, it is also exposed through MHI bus for QCOM based PCIe wwan modems. This driver supports the new wwan rtnetlink interface for multi-link management and has been tested with Quectel EM120R-GL M2 module. Signed-off-by: Loic Poulain <loic.poulain@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
356 B
Makefile
15 lines
356 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux WWAN device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_WWAN) += wwan.o
|
|
wwan-objs += wwan_core.o
|
|
|
|
obj-$(CONFIG_WWAN_HWSIM) += wwan_hwsim.o
|
|
|
|
obj-$(CONFIG_MHI_WWAN_CTRL) += mhi_wwan_ctrl.o
|
|
obj-$(CONFIG_MHI_WWAN_MBIM) += mhi_wwan_mbim.o
|
|
obj-$(CONFIG_RPMSG_WWAN_CTRL) += rpmsg_wwan_ctrl.o
|
|
obj-$(CONFIG_IOSM) += iosm/
|