diff --git a/[refs] b/[refs] index dd04a8fe3b2a..6890980fe5ff 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 02b51df1b07b4e9ca823c89284e704cadb323cd1 +refs/heads/master: 70867453092297be9afb2249e712a1f960ec0a09 diff --git a/trunk/include/linux/kernel.h b/trunk/include/linux/kernel.h index 0a2a19087863..55723afa097b 100644 --- a/trunk/include/linux/kernel.h +++ b/trunk/include/linux/kernel.h @@ -252,10 +252,10 @@ extern int printk_delay_msec; * Print a one-time message (analogous to WARN_ONCE() et al): */ #define printk_once(x...) ({ \ - static int __print_once = 1; \ + static bool __print_once = true; \ \ if (__print_once) { \ - __print_once = 0; \ + __print_once = false; \ printk(x); \ } \ })