diff options
author | J Freyensee <james_p_freyensee@linux.intel.com> | 2011-05-06 16:56:50 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-05-13 16:31:00 -0700 |
commit | ee4f6b4b89665b92ead67deaa2e5d2ffa1af2b5f (patch) | |
tree | adaaf31efc06fe2960827cba1510855bea6ea3d3 /drivers/tty/Makefile | |
parent | 0b61d2acb1ea48d8eba798ed92759b7f1b0f4209 (diff) | |
download | linux-ee4f6b4b89665b92ead67deaa2e5d2ffa1af2b5f.tar.gz linux-ee4f6b4b89665b92ead67deaa2e5d2ffa1af2b5f.tar.bz2 linux-ee4f6b4b89665b92ead67deaa2e5d2ffa1af2b5f.zip |
n_tracerouter and n_tracesink ldisc additions.
The n_tracerouter and n_tracesink line discpline drivers use the
Linux tty line discpline framework to route trace data coming
from a tty port (say UART for example) to the trace sink line
discipline driver and to another tty port(say USB). Those
these two line discipline drivers can be used together,
independently from pti.c, they are part of the original
implementation solution of the MIPI P1149.7, compact JTAG, PTI
solution for Intel mobile platforms starting with the
Medfield platform.
Signed-off-by: J Freyensee <james_p_freyensee@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/tty/Makefile')
-rw-r--r-- | drivers/tty/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/tty/Makefile b/drivers/tty/Makefile index 690522fcb338..ea89b0bd15fe 100644 --- a/drivers/tty/Makefile +++ b/drivers/tty/Makefile @@ -6,6 +6,8 @@ obj-$(CONFIG_AUDIT) += tty_audit.o obj-$(CONFIG_MAGIC_SYSRQ) += sysrq.o obj-$(CONFIG_N_HDLC) += n_hdlc.o obj-$(CONFIG_N_GSM) += n_gsm.o +obj-$(CONFIG_TRACE_ROUTER) += n_tracerouter.o +obj-$(CONFIG_TRACE_SINK) += n_tracesink.o obj-$(CONFIG_R3964) += n_r3964.o obj-y += vt/ |