treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / hwtracing / stm / ftrace.c
blobce868e0954109ea3d42d996b29b8eeded4310167
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Simple kernel driver to link kernel Ftrace and an STM device
4 * Copyright (c) 2016, Linaro Ltd.
6 * STM Ftrace will be registered as a trace_export.
7 */
9 #include <linux/module.h>
10 #include <linux/stm.h>
11 #include <linux/trace.h>
13 #define STM_FTRACE_NR_CHANNELS 1
14 #define STM_FTRACE_CHAN 0
16 static int stm_ftrace_link(struct stm_source_data *data);
17 static void stm_ftrace_unlink(struct stm_source_data *data);
19 static struct stm_ftrace {
20 struct stm_source_data data;
21 struct trace_export ftrace;
22 } stm_ftrace = {
23 .data = {
24 .name = "ftrace",
25 .nr_chans = STM_FTRACE_NR_CHANNELS,
26 .link = stm_ftrace_link,
27 .unlink = stm_ftrace_unlink,
31 /**
32 * stm_ftrace_write() - write data to STM via 'stm_ftrace' source
33 * @buf: buffer containing the data packet
34 * @len: length of the data packet
36 static void notrace
37 stm_ftrace_write(struct trace_export *export, const void *buf, unsigned int len)
39 struct stm_ftrace *stm = container_of(export, struct stm_ftrace, ftrace);
41 stm_source_write(&stm->data, STM_FTRACE_CHAN, buf, len);
44 static int stm_ftrace_link(struct stm_source_data *data)
46 struct stm_ftrace *sf = container_of(data, struct stm_ftrace, data);
48 sf->ftrace.write = stm_ftrace_write;
50 return register_ftrace_export(&sf->ftrace);
53 static void stm_ftrace_unlink(struct stm_source_data *data)
55 struct stm_ftrace *sf = container_of(data, struct stm_ftrace, data);
57 unregister_ftrace_export(&sf->ftrace);
60 static int __init stm_ftrace_init(void)
62 int ret;
64 ret = stm_source_register_device(NULL, &stm_ftrace.data);
65 if (ret)
66 pr_err("Failed to register stm_source - ftrace.\n");
68 return ret;
71 static void __exit stm_ftrace_exit(void)
73 stm_source_unregister_device(&stm_ftrace.data);
76 module_init(stm_ftrace_init);
77 module_exit(stm_ftrace_exit);
79 MODULE_LICENSE("GPL v2");
80 MODULE_DESCRIPTION("stm_ftrace driver");
81 MODULE_AUTHOR("Chunyan Zhang <zhang.chunyan@linaro.org>");