diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2019-07-05 16:14:22 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-07-25 13:03:18 +0200 |
commit | f220df66f67684246ae1bf4a4e479efc7c2f325a (patch) | |
tree | 5fc0cc3a1a6274535c8f729f8c2eaae2e8ce70b3 /drivers/hwtracing/intel_th/Makefile | |
parent | intel_th: msu: Introduce buffer interface (diff) | |
download | linux-f220df66f67684246ae1bf4a4e479efc7c2f325a.tar.xz linux-f220df66f67684246ae1bf4a4e479efc7c2f325a.zip |
intel_th: msu-sink: An example msu buffer "sink"
This patch adds an example MSU buffer "sink", which consumes trace
data from MSC buffers.
Functionally, it acts similarly to "multi" mode with automatic window
switching.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20190705141425.19894-3-alexander.shishkin@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hwtracing/intel_th/Makefile')
-rw-r--r-- | drivers/hwtracing/intel_th/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/hwtracing/intel_th/Makefile b/drivers/hwtracing/intel_th/Makefile index d9252fa8d9ca..b63eb8f309ad 100644 --- a/drivers/hwtracing/intel_th/Makefile +++ b/drivers/hwtracing/intel_th/Makefile @@ -20,3 +20,6 @@ intel_th_msu-y := msu.o obj-$(CONFIG_INTEL_TH_PTI) += intel_th_pti.o intel_th_pti-y := pti.o + +obj-$(CONFIG_INTEL_TH_MSU) += intel_th_msu_sink.o +intel_th_msu_sink-y := msu-sink.o |