Don't call a warnign a bug. It's a warning.

Change the default printout message for WARN_ON() to say what it is, not
something else. I'm tired of having people get all aflutter about a warning.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

+1 -1
+1 -1
include/asm-generic/bug.h
··· 35 #define WARN_ON(condition) ({ \ 36 typeof(condition) __ret_warn_on = (condition); \ 37 if (unlikely(__ret_warn_on)) { \ 38 - printk("BUG: at %s:%d %s()\n", __FILE__, \ 39 __LINE__, __FUNCTION__); \ 40 dump_stack(); \ 41 } \
··· 35 #define WARN_ON(condition) ({ \ 36 typeof(condition) __ret_warn_on = (condition); \ 37 if (unlikely(__ret_warn_on)) { \ 38 + printk("WARNING: at %s:%d %s()\n", __FILE__, \ 39 __LINE__, __FUNCTION__); \ 40 dump_stack(); \ 41 } \