diff options
author | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-08-24 10:21:26 +0300 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2017-08-30 00:29:33 +0300 |
commit | 835764ddd9af0d943a2ac7fb4597800e8b0871d2 (patch) | |
tree | 376257b2fcbab35ac1b569e744bfa23eb89d6cc5 /drivers/rpmsg/Kconfig | |
parent | 6799c434c27bd558e5994a515f256f70fdb19a0b (diff) | |
download | linux-835764ddd9af0d943a2ac7fb4597800e8b0871d2.tar.xz |
rpmsg: glink: Move the common glink protocol implementation to glink_native.c
Move the common part of glink core protocol implementation to
glink_native.c that can be shared with the smem based glink
transport in the later patches.
Acked-by: Arun Kumar Neelakantam <aneela@codeaurora.org>
Signed-off-by: Sricharan R <sricharan@codeaurora.org>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/rpmsg/Kconfig')
-rw-r--r-- | drivers/rpmsg/Kconfig | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/rpmsg/Kconfig b/drivers/rpmsg/Kconfig index 1323a245763b..4218570279e0 100644 --- a/drivers/rpmsg/Kconfig +++ b/drivers/rpmsg/Kconfig @@ -13,9 +13,13 @@ config RPMSG_CHAR in /dev. They make it possible for user-space programs to send and receive rpmsg packets. +config RPMSG_QCOM_GLINK_NATIVE + tristate + select RPMSG + config RPMSG_QCOM_GLINK_RPM tristate "Qualcomm RPM Glink driver" - select RPMSG + select RPMSG_QCOM_GLINK_NATIVE depends on HAS_IOMEM depends on MAILBOX help |