diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-12-05 20:43:07 +0300 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2017-12-21 00:38:34 +0300 |
commit | 3830d0771ef66a3bb9ab57b70630b3598593a4f0 (patch) | |
tree | c1030100f3dfb2487b3f213e65e449b58f259cfd /drivers/soc/qcom/Makefile | |
parent | 9b8a11e82615274d4133aab3cf5aa1c59191f0a2 (diff) | |
download | linux-3830d0771ef66a3bb9ab57b70630b3598593a4f0.tar.xz |
soc: qcom: Introduce QMI helpers
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>
Diffstat (limited to 'drivers/soc/qcom/Makefile')
-rw-r--r-- | drivers/soc/qcom/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/Makefile b/drivers/soc/qcom/Makefile index 37f85b45d0a1..dcebf2814e6d 100644 --- a/drivers/soc/qcom/Makefile +++ b/drivers/soc/qcom/Makefile @@ -4,7 +4,7 @@ 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_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 |