mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 13:20:52 +07:00
3830d0771e
Drivers that needs to communicate with a remote QMI service all has to perform the operations of discovering the service, encoding and decoding the messages and operate the socket. This introduces an abstraction for these common operations, reducing most of the duplication in such cases. Acked-by: Chris Lew <clew@codeaurora.org> Tested-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Andy Gross <andy.gross@linaro.org>
15 lines
569 B
Makefile
15 lines
569 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_QCOM_GLINK_SSR) += glink_ssr.o
|
|
obj-$(CONFIG_QCOM_GSBI) += qcom_gsbi.o
|
|
obj-$(CONFIG_QCOM_MDT_LOADER) += mdt_loader.o
|
|
obj-$(CONFIG_QCOM_PM) += spm.o
|
|
obj-$(CONFIG_QCOM_QMI_HELPERS) += qmi_helpers.o
|
|
qmi_helpers-y += qmi_encdec.o qmi_interface.o
|
|
obj-$(CONFIG_QCOM_RMTFS_MEM) += rmtfs_mem.o
|
|
obj-$(CONFIG_QCOM_SMD_RPM) += smd-rpm.o
|
|
obj-$(CONFIG_QCOM_SMEM) += smem.o
|
|
obj-$(CONFIG_QCOM_SMEM_STATE) += smem_state.o
|
|
obj-$(CONFIG_QCOM_SMP2P) += smp2p.o
|
|
obj-$(CONFIG_QCOM_SMSM) += smsm.o
|
|
obj-$(CONFIG_QCOM_WCNSS_CTRL) += wcnss_ctrl.o
|