diff options
Diffstat (limited to 'samples/tracepoints/tracepoint-probe-sample2.c')
-rw-r--r-- | samples/tracepoints/tracepoint-probe-sample2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/tracepoints/tracepoint-probe-sample2.c b/samples/tracepoints/tracepoint-probe-sample2.c index 685a5acb4562..be2a960573f1 100644 --- a/samples/tracepoints/tracepoint-probe-sample2.c +++ b/samples/tracepoints/tracepoint-probe-sample2.c | |||
@@ -18,7 +18,7 @@ static void probe_subsys_event(struct inode *inode, struct file *file) | |||
18 | inode->i_ino); | 18 | inode->i_ino); |
19 | } | 19 | } |
20 | 20 | ||
21 | int __init tp_sample_trace_init(void) | 21 | static int __init tp_sample_trace_init(void) |
22 | { | 22 | { |
23 | int ret; | 23 | int ret; |
24 | 24 | ||
@@ -30,7 +30,7 @@ int __init tp_sample_trace_init(void) | |||
30 | 30 | ||
31 | module_init(tp_sample_trace_init); | 31 | module_init(tp_sample_trace_init); |
32 | 32 | ||
33 | void __exit tp_sample_trace_exit(void) | 33 | static void __exit tp_sample_trace_exit(void) |
34 | { | 34 | { |
35 | unregister_trace_subsys_event(probe_subsys_event); | 35 | unregister_trace_subsys_event(probe_subsys_event); |
36 | tracepoint_synchronize_unregister(); | 36 | tracepoint_synchronize_unregister(); |