mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
b9075fa968
Standardize the style for compiler based printf format verification. Standardized the location of __printf too. Done via script and a little typing. $ grep -rPl --include=*.[ch] -w "__attribute__" * | \ grep -vP "^(tools|scripts|include/linux/compiler-gcc.h)" | \ xargs perl -n -i -e 'local $/; while (<>) { s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.+)\s*,\s*(.+)\s*\)\s*\)\s*\)/__printf($1, $2)/g ; print; }' [akpm@linux-foundation.org: revert arch bits] Signed-off-by: Joe Perches <joe@perches.com> Cc: "Kirill A. Shutemov" <kirill@shutemov.name> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
18 lines
479 B
C
18 lines
479 B
C
#ifndef XEN_HVC_CONSOLE_H
|
|
#define XEN_HVC_CONSOLE_H
|
|
|
|
extern struct console xenboot_console;
|
|
|
|
#ifdef CONFIG_HVC_XEN
|
|
void xen_console_resume(void);
|
|
void xen_raw_console_write(const char *str);
|
|
__printf(1, 2)
|
|
void xen_raw_printk(const char *fmt, ...);
|
|
#else
|
|
static inline void xen_console_resume(void) { }
|
|
static inline void xen_raw_console_write(const char *str) { }
|
|
static inline __printf(1, 2)
|
|
void xen_raw_printk(const char *fmt, ...) { }
|
|
#endif
|
|
|
|
#endif /* XEN_HVC_CONSOLE_H */
|