f36a111a74
This driver simulates a set of WWAN device with a set of AT control ports. It can be used to test WWAN kernel framework as well as user space tools. Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
235 B
Makefile
12 lines
235 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux WWAN device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_WWAN_CORE) += wwan.o
|
|
wwan-objs += wwan_core.o
|
|
|
|
obj-$(CONFIG_WWAN_HWSIM) += wwan_hwsim.o
|
|
|
|
obj-$(CONFIG_MHI_WWAN_CTRL) += mhi_wwan_ctrl.o
|