diff options
author | Mike Leach <mike.leach@linaro.org> | 2021-11-24 23:00:36 +0300 |
---|---|---|
committer | Mathieu Poirier <mathieu.poirier@linaro.org> | 2021-11-26 21:34:07 +0300 |
commit | ede5bab874f535355ccee5514383941b9525c03b (patch) | |
tree | 9273638395eda53757447b2978cd70a938024a10 /samples/coresight/Makefile | |
parent | eb2ec49606c2a02d6382d56a0e19f34e515fde3f (diff) | |
download | linux-ede5bab874f535355ccee5514383941b9525c03b.tar.xz |
coresight: syscfg: Example CoreSight configuration loadable module
An example of creating a loadable module to add CoreSight configurations
into a system.
In the Kernel samples/coresight directory.
Signed-off-by: Mike Leach <mike.leach@linaro.org>
Link: https://lore.kernel.org/r/20211124200038.28662-5-mike.leach@linaro.org
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Diffstat (limited to 'samples/coresight/Makefile')
-rw-r--r-- | samples/coresight/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/samples/coresight/Makefile b/samples/coresight/Makefile new file mode 100644 index 000000000000..b3fce4af2347 --- /dev/null +++ b/samples/coresight/Makefile @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: GPL-2.0-only + +obj-$(CONFIG_SAMPLE_CORESIGHT_SYSCFG) += coresight-cfg-sample.o +ccflags-y += -I$(srctree)/drivers/hwtracing/coresight |