diff options
author | Steven Rostedt (VMware) | 2019-11-08 13:12:33 -0500 |
---|---|---|
committer | Steven Rostedt (VMware) | 2019-11-13 09:36:49 -0500 |
commit | b06457c83af669bb9ef71f5b84a3132657dce8a1 (patch) | |
tree | 0358038475936f4553ed8a63e4bbaa32b0469af7 /samples/ftrace/Makefile | |
parent | 013bf0da0474816f57739daa006c8564ad7396a3 (diff) |
ftrace: Add sample module that uses register_ftrace_direct()
Add a sample module that shows a simple use case for
regsiter_ftrace_direct(), and how to use it.
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'samples/ftrace/Makefile')
-rw-r--r-- | samples/ftrace/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/samples/ftrace/Makefile b/samples/ftrace/Makefile new file mode 100644 index 000000000000..3718ab39eba3 --- /dev/null +++ b/samples/ftrace/Makefile @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: GPL-2.0-only + +obj-$(CONFIG_SAMPLE_FTRACE_DIRECT) += ftrace-direct.o |