Commit a3f938bf6f5746d39e013d03ba13118a393fee96

Authored by Joe Perches
Committed by Linus Torvalds
1 parent 6ec42a56e2

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>

Showing 1 changed file with 7 additions and 7 deletions Side-by-side Diff

include/linux/printk.h
... ... @@ -146,20 +146,20 @@
146 146 #endif
147 147  
148 148 #define pr_emerg(fmt, ...) \
149   - printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
  149 + printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
150 150 #define pr_alert(fmt, ...) \
151   - printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
  151 + printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
152 152 #define pr_crit(fmt, ...) \
153   - printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
  153 + printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
154 154 #define pr_err(fmt, ...) \
155   - printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
  155 + printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
156 156 #define pr_warning(fmt, ...) \
157   - printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
  157 + printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
158 158 #define pr_warn pr_warning
159 159 #define pr_notice(fmt, ...) \
160   - printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
  160 + printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
161 161 #define pr_info(fmt, ...) \
162   - printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
  162 + printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
163 163 #define pr_cont(fmt, ...) \
164 164 printk(KERN_CONT fmt, ##__VA_ARGS__)
165 165