diff options
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r-- | include/linux/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index db6717d0fd6f..a38d6bd6fde6 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -428,7 +428,7 @@ static inline char *pack_hex_byte(char *buf, u8 byte) | |||
428 | .burst = DEFAULT_RATELIMIT_BURST, \ | 428 | .burst = DEFAULT_RATELIMIT_BURST, \ |
429 | }; \ | 429 | }; \ |
430 | \ | 430 | \ |
431 | if (!__ratelimit(&_rs)) \ | 431 | if (__ratelimit(&_rs)) \ |
432 | printk(fmt, ##__VA_ARGS__); \ | 432 | printk(fmt, ##__VA_ARGS__); \ |
433 | }) | 433 | }) |
434 | #else | 434 | #else |