aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/printk.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-01-12 19:59:48 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2011-01-13 11:03:10 -0500
commita3f938bf6f5746d39e013d03ba13118a393fee96 (patch)
tree37084efbd18680d616fbd3c9624061dd22a1bc96 /include/linux/printk.h
parent6ec42a56e258462cda510421aecc2680d3642e21 (diff)
include/linux/printk.h: use tab not spaces for indent
Signed-off-by: Joe Perches <joe@perches.com> Cc: Matt Mackall <mpm@selenic.com> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/printk.h')
-rw-r--r--include/linux/printk.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/linux/printk.h b/include/linux/printk.h
index d30f579c6f9..ee048e77e1a 100644
--- a/include/linux/printk.h
+++ b/include/linux/printk.h
@@ -146,20 +146,20 @@ extern void dump_stack(void) __cold;
146#endif 146#endif
147 147
148#define pr_emerg(fmt, ...) \ 148#define pr_emerg(fmt, ...) \
149 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) 149 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
150#define pr_alert(fmt, ...) \ 150#define pr_alert(fmt, ...) \
151 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) 151 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
152#define pr_crit(fmt, ...) \ 152#define pr_crit(fmt, ...) \
153 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) 153 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
154#define pr_err(fmt, ...) \ 154#define pr_err(fmt, ...) \
155 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) 155 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
156#define pr_warning(fmt, ...) \ 156#define pr_warning(fmt, ...) \
157 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) 157 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
158#define pr_warn pr_warning 158#define pr_warn pr_warning
159#define pr_notice(fmt, ...) \ 159#define pr_notice(fmt, ...) \
160 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) 160 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
161#define pr_info(fmt, ...) \ 161#define pr_info(fmt, ...) \
162 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) 162 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
163#define pr_cont(fmt, ...) \ 163#define pr_cont(fmt, ...) \
164 printk(KERN_CONT fmt, ##__VA_ARGS__) 164 printk(KERN_CONT fmt, ##__VA_ARGS__)
165 165