summaryrefslogtreecommitdiffstats
path: root/lib/dynamic_debug.c
diff options
context:
space:
mode:
authorJim Cromie <jim.cromie@gmail.com>2011-12-19 17:12:34 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2012-01-24 12:46:45 -0800
commitae27f86a21eb9a9e005f06b126eb88662ba4f940 (patch)
tree365183b662741c4ec797792faca06fa5b963b8a8 /lib/dynamic_debug.c
parentbc757f6f5bf4e9251bbc1a3419c94ffe9fd3e2ee (diff)
downloadlinux-0-day-ae27f86a21eb9a9e005f06b126eb88662ba4f940.tar.gz
linux-0-day-ae27f86a21eb9a9e005f06b126eb88662ba4f940.tar.xz
dynamic_debug: pr_err() call should not depend upon verbosity
Issue keyword/parsing errors even w/o verbose set; uncover otherwize mysterious non-functionality. Signed-off-by: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Jason Baron <jbaron@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'lib/dynamic_debug.c')
-rw-r--r--lib/dynamic_debug.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c
index 6fc8622f0a834..d232025cb85c9 100644
--- a/lib/dynamic_debug.c
+++ b/lib/dynamic_debug.c
@@ -322,8 +322,7 @@ static int ddebug_parse_query(char *words[], int nwords,
query->last_lineno = query->first_lineno;
}
} else {
- if (verbose)
- pr_err("unknown keyword \"%s\"\n", words[i]);
+ pr_err("unknown keyword \"%s\"\n", words[i]);
return -EINVAL;
}
}