diff options
Diffstat (limited to 'sound')
-rw-r--r-- | sound/core/misc.c | 67 |
1 files changed, 39 insertions, 28 deletions
diff --git a/sound/core/misc.c b/sound/core/misc.c index 1d29e678369e..23a032c6d487 100644 --- a/sound/core/misc.c +++ b/sound/core/misc.c | |||
@@ -24,6 +24,20 @@ | |||
24 | #include <linux/ioport.h> | 24 | #include <linux/ioport.h> |
25 | #include <sound/core.h> | 25 | #include <sound/core.h> |
26 | 26 | ||
27 | #ifdef CONFIG_SND_DEBUG | ||
28 | |||
29 | #ifdef CONFIG_SND_DEBUG_VERBOSE | ||
30 | #define DEFAULT_DEBUG_LEVEL 2 | ||
31 | #else | ||
32 | #define DEFAULT_DEBUG_LEVEL 1 | ||
33 | #endif | ||
34 | |||
35 | static int debug = DEFAULT_DEBUG_LEVEL; | ||
36 | module_param(debug, int, 0644); | ||
37 | MODULE_PARM_DESC(debug, "Debug level (0 = disable)"); | ||
38 | |||
39 | #endif /* CONFIG_SND_DEBUG */ | ||
40 | |||
27 | void release_and_free_resource(struct resource *res) | 41 | void release_and_free_resource(struct resource *res) |
28 | { | 42 | { |
29 | if (res) { | 43 | if (res) { |
@@ -35,6 +49,7 @@ void release_and_free_resource(struct resource *res) | |||
35 | EXPORT_SYMBOL(release_and_free_resource); | 49 | EXPORT_SYMBOL(release_and_free_resource); |
36 | 50 | ||
37 | #ifdef CONFIG_SND_VERBOSE_PRINTK | 51 | #ifdef CONFIG_SND_VERBOSE_PRINTK |
52 | /* strip the leading path if the given path is absolute */ | ||
38 | static const char *sanity_file_name(const char *path) | 53 | static const char *sanity_file_name(const char *path) |
39 | { | 54 | { |
40 | if (*path == '/') | 55 | if (*path == '/') |
@@ -43,48 +58,44 @@ static const char *sanity_file_name(const char *path) | |||
43 | return path; | 58 | return path; |
44 | } | 59 | } |
45 | 60 | ||
46 | void snd_verbose_printk(const char *path, int line, const char *format, ...) | 61 | /* print file and line with a certain printk prefix */ |
62 | static int print_snd_pfx(unsigned int level, const char *path, int line, | ||
63 | const char *format) | ||
47 | { | 64 | { |
48 | const char *file = sanity_file_name(path); | 65 | const char *file = sanity_file_name(path); |
49 | va_list args; | 66 | char tmp[] = "<0>"; |
50 | 67 | const char *pfx = level ? KERN_DEBUG : KERN_DEFAULT; | |
51 | if (format[0] == '<' && format[1] >= '0' && format[1] <= '7' && format[2] == '>') { | 68 | int ret = 0; |
52 | char tmp[] = "<0>"; | 69 | |
70 | if (format[0] == '<' && format[2] == '>') { | ||
53 | tmp[1] = format[1]; | 71 | tmp[1] = format[1]; |
54 | printk("%sALSA %s:%d: ", tmp, file, line); | 72 | pfx = tmp; |
55 | format += 3; | 73 | ret = 1; |
56 | } else { | ||
57 | printk("ALSA %s:%d: ", file, line); | ||
58 | } | 74 | } |
59 | va_start(args, format); | 75 | printk("%sALSA %s:%d: ", pfx, file, line); |
60 | vprintk(format, args); | 76 | return ret; |
61 | va_end(args); | ||
62 | } | 77 | } |
63 | 78 | #else | |
64 | EXPORT_SYMBOL(snd_verbose_printk); | 79 | #define print_snd_pfx(level, path, line, format) 0 |
65 | #endif | 80 | #endif |
66 | 81 | ||
67 | #if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_VERBOSE_PRINTK) | 82 | #if defined(CONFIG_SND_DEBUG) || defined(CONFIG_SND_VERBOSE_PRINTK) |
68 | void snd_verbose_printd(const char *path, int line, const char *format, ...) | 83 | void __snd_printk(unsigned int level, const char *path, int line, |
84 | const char *format, ...) | ||
69 | { | 85 | { |
70 | const char *file = sanity_file_name(path); | ||
71 | va_list args; | 86 | va_list args; |
72 | 87 | ||
73 | if (format[0] == '<' && format[1] >= '0' && format[1] <= '7' && format[2] == '>') { | 88 | #ifdef CONFIG_SND_DEBUG |
74 | char tmp[] = "<0>"; | 89 | if (debug < level) |
75 | tmp[1] = format[1]; | 90 | return; |
76 | printk("%sALSA %s:%d: ", tmp, file, line); | 91 | #endif |
77 | format += 3; | ||
78 | } else { | ||
79 | printk(KERN_DEBUG "ALSA %s:%d: ", file, line); | ||
80 | } | ||
81 | va_start(args, format); | 92 | va_start(args, format); |
93 | if (print_snd_pfx(level, path, line, format)) | ||
94 | format += 3; /* skip the printk level-prefix */ | ||
82 | vprintk(format, args); | 95 | vprintk(format, args); |
83 | va_end(args); | 96 | va_end(args); |
84 | |||
85 | } | 97 | } |
86 | 98 | EXPORT_SYMBOL_GPL(__snd_printk); | |
87 | EXPORT_SYMBOL(snd_verbose_printd); | ||
88 | #endif | 99 | #endif |
89 | 100 | ||
90 | #ifdef CONFIG_PCI | 101 | #ifdef CONFIG_PCI |