diff options
author | Pratik Patel <pratikp@codeaurora.org> | 2014-11-03 11:07:40 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-11-07 15:19:33 -0800 |
commit | ceacc1d9b7ae41e4be185596306be17537682fb1 (patch) | |
tree | c389a3f73aacc26c73cefa45dccdecb18ec7698e /drivers/coresight/Makefile | |
parent | 6e21e3451556af6ada01e2206d5949fc654d75e1 (diff) |
coresight-replicator: add CoreSight Replicator driver
This driver manages non-configurable CoreSight Replicator that
takes a single input trace data stream and replicates it to
produce two identical trace data output streams. Replicators
are typically used to route single interleaved trace data
stream to two or more sinks.
Signed-off-by: Pratik Patel <pratikp@codeaurora.org>
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/coresight/Makefile')
-rw-r--r-- | drivers/coresight/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/coresight/Makefile b/drivers/coresight/Makefile index 05b8a1c75f7..574d5fa496f 100644 --- a/drivers/coresight/Makefile +++ b/drivers/coresight/Makefile @@ -6,4 +6,5 @@ obj-$(CONFIG_OF) += of_coresight.o obj-$(CONFIG_CORESIGHT_LINK_AND_SINK_TMC) += coresight-tmc.o obj-$(CONFIG_CORESIGHT_SINK_TPIU) += coresight-tpiu.o obj-$(CONFIG_CORESIGHT_SINK_ETBV10) += coresight-etb10.o -obj-$(CONFIG_CORESIGHT_LINKS_AND_SINKS) += coresight-funnel.o +obj-$(CONFIG_CORESIGHT_LINKS_AND_SINKS) += coresight-funnel.o \ + coresight-replicator.o |