diff options
author | Jim Cromie <jim.cromie@gmail.com> | 2021-05-05 01:22:35 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-13 21:50:23 +0300 |
commit | a3626bcf5fafad0ded410b269e21f37bdaf2baf4 (patch) | |
tree | e774e2956eeb6f6ff05a1e2db67104694189cf46 /lib | |
parent | 640d1eaff2c09e382a23bd831094ebbfaa16fef5 (diff) | |
download | linux-a3626bcf5fafad0ded410b269e21f37bdaf2baf4.tar.xz |
dyndbg: drop uninformative vpr_info
Remove a vpr_info which I added in 2012, when I knew even less than now.
In 2020, a simpler pr_fmt stripped it of context, and any remaining value.
no functional change.
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
Link: https://lore.kernel.org/r/20210504222235.1033685-3-jim.cromie@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/dynamic_debug.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index 398920403321..641767b0dce2 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c @@ -920,7 +920,6 @@ static const struct seq_operations ddebug_proc_seqops = { static int ddebug_proc_open(struct inode *inode, struct file *file) { - vpr_info("called\n"); return seq_open_private(file, &ddebug_proc_seqops, sizeof(struct ddebug_iter)); } |