diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-03-05 21:44:55 -0500 |
---|---|---|
committer | Steven Rostedt <srostedt@redhat.com> | 2009-03-05 21:46:40 -0500 |
commit | 5e2336a0d47c9661a40cc5ef85135ce1406af6e8 (patch) | |
tree | 6d977e4471f8e31245602a26e939368689d2383a /kernel/trace/ring_buffer.c | |
parent | 2002c258faaa8f89543df284fdbaa9e4b171547f (diff) |
tracing: make all file_operations const
Impact: cleanup
All file_operations structures should be constant. No one is going to
change them.
Reported-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'kernel/trace/ring_buffer.c')
-rw-r--r-- | kernel/trace/ring_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/trace/ring_buffer.c b/kernel/trace/ring_buffer.c index f7473645b9c6..178858492a89 100644 --- a/kernel/trace/ring_buffer.c +++ b/kernel/trace/ring_buffer.c | |||
@@ -2606,7 +2606,7 @@ rb_simple_write(struct file *filp, const char __user *ubuf, | |||
2606 | return cnt; | 2606 | return cnt; |
2607 | } | 2607 | } |
2608 | 2608 | ||
2609 | static struct file_operations rb_simple_fops = { | 2609 | static const struct file_operations rb_simple_fops = { |
2610 | .open = tracing_open_generic, | 2610 | .open = tracing_open_generic, |
2611 | .read = rb_simple_read, | 2611 | .read = rb_simple_read, |
2612 | .write = rb_simple_write, | 2612 | .write = rb_simple_write, |