diff options
author | Arnaud Pouliquen <arnaud.pouliquen@foss.st.com> | 2021-10-15 11:47:01 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-10-21 12:35:35 +0200 |
commit | 7c0408d805797178f075f33d0f705a1c6ef76c82 (patch) | |
tree | 04c850fda5bcb5cfc280f004a189e237a75ac535 /drivers/tty/Makefile | |
parent | rpmsg: core: add API to get MTU (diff) | |
download | linux-7c0408d805797178f075f33d0f705a1c6ef76c82.tar.xz linux-7c0408d805797178f075f33d0f705a1c6ef76c82.zip |
tty: add rpmsg driver
This driver exposes a standard TTY interface on top of the rpmsg
framework through a rpmsg service.
This driver supports multi-instances, offering a /dev/ttyRPMSGx entry
per rpmsg endpoint.
Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
Link: https://lore.kernel.org/r/20211015094701.5732-3-arnaud.pouliquen@foss.st.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/Makefile')
-rw-r--r-- | drivers/tty/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/Makefile b/drivers/tty/Makefile index a2bd75fbaaa4..07aca5184a55 100644 --- a/drivers/tty/Makefile +++ b/drivers/tty/Makefile @@ -26,5 +26,6 @@ obj-$(CONFIG_PPC_EPAPR_HV_BYTECHAN) += ehv_bytechan.o obj-$(CONFIG_GOLDFISH_TTY) += goldfish.o obj-$(CONFIG_MIPS_EJTAG_FDC_TTY) += mips_ejtag_fdc.o obj-$(CONFIG_VCC) += vcc.o +obj-$(CONFIG_RPMSG_TTY) += rpmsg_tty.o obj-y += ipwireless/ |