ea25f63fe3
Add a transport that uses the mhi device APIs. The mhi device APIs are used to transfer data from a device to the host over MHI. The modem will generally be configured as a device and this transport is intended to be used on the modem controller co-processor. commit net: qrtr: Add support for a mhi device transport (89754e5ed45dd). Change-Id: Ie9276fe6c0846581192aff881e59baa5fecf1ca4 Signed-off-by: Chris Lew <clew@codeaurora.org> Signed-off-by: Manoharan Vijaya Raghavan <mraghava@codeaurora.org>
14 lines
384 B
Makefile
14 lines
384 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_QRTR) := qrtr.o ns.o
|
|
|
|
obj-$(CONFIG_QRTR_SMD) += qrtr-smd.o
|
|
qrtr-smd-y := smd.o
|
|
obj-$(CONFIG_QRTR_TUN) += qrtr-tun.o
|
|
qrtr-tun-y := tun.o
|
|
obj-$(CONFIG_QRTR_MHI) += qrtr-mhi.o
|
|
qrtr-mhi-y := mhi.o
|
|
obj-$(CONFIG_QRTR_MHI_DEV) += qrtr-mhi-dev.o
|
|
qrtr-mhi-dev-y := mhi_dev.o
|
|
obj-$(CONFIG_QRTR_HAVEN) += qrtr-haven.o
|
|
qrtr-haven-y := haven.o
|