Commit 86d8a086 authored by Joe Perches's avatar Joe Perches Committed by Ingo Molnar

include/asm-x86/bug.h: checkpatch cleanups - formatting only

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 286275c9
......@@ -13,7 +13,7 @@
#endif
#define BUG() \
do { \
do { \
asm volatile("1:\tud2\n" \
".pushsection __bug_table,\"a\"\n" \
__BUG_C0 \
......@@ -22,15 +22,15 @@
".popsection" \
: : "i" (__FILE__), "i" (__LINE__), \
"i" (sizeof(struct bug_entry))); \
for(;;) ; \
} while(0)
for (;;) ; \
} while (0)
#else
#define BUG() \
do { \
do { \
asm volatile("ud2"); \
for(;;) ; \
} while(0)
for (;;) ; \
} while (0)
#endif
#endif /* !CONFIG_BUG */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment