aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r--include/linux/kernel.h19
1 files changed, 4 insertions, 15 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index 7fa371898e3e..f81d80f47dcb 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -16,7 +16,7 @@
16#include <linux/log2.h> 16#include <linux/log2.h>
17#include <linux/typecheck.h> 17#include <linux/typecheck.h>
18#include <linux/ratelimit.h> 18#include <linux/ratelimit.h>
19#include <linux/dynamic_printk.h> 19#include <linux/dynamic_debug.h>
20#include <asm/byteorder.h> 20#include <asm/byteorder.h>
21#include <asm/bug.h> 21#include <asm/bug.h>
22 22
@@ -358,9 +358,10 @@ static inline char *pack_hex_byte(char *buf, u8 byte)
358#if defined(DEBUG) 358#if defined(DEBUG)
359#define pr_debug(fmt, ...) \ 359#define pr_debug(fmt, ...) \
360 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) 360 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
361#elif defined(CONFIG_DYNAMIC_PRINTK_DEBUG) 361#elif defined(CONFIG_DYNAMIC_DEBUG)
362/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
362#define pr_debug(fmt, ...) do { \ 363#define pr_debug(fmt, ...) do { \
363 dynamic_pr_debug(pr_fmt(fmt), ##__VA_ARGS__); \ 364 dynamic_pr_debug(fmt, ##__VA_ARGS__); \
364 } while (0) 365 } while (0)
365#else 366#else
366#define pr_debug(fmt, ...) \ 367#define pr_debug(fmt, ...) \
@@ -378,18 +379,6 @@ static inline char *pack_hex_byte(char *buf, u8 byte)
378 ((unsigned char *)&addr)[3] 379 ((unsigned char *)&addr)[3]
379#define NIPQUAD_FMT "%u.%u.%u.%u" 380#define NIPQUAD_FMT "%u.%u.%u.%u"
380 381
381#if defined(__LITTLE_ENDIAN)
382#define HIPQUAD(addr) \
383 ((unsigned char *)&addr)[3], \
384 ((unsigned char *)&addr)[2], \
385 ((unsigned char *)&addr)[1], \
386 ((unsigned char *)&addr)[0]
387#elif defined(__BIG_ENDIAN)
388#define HIPQUAD NIPQUAD
389#else
390#error "Please fix asm/byteorder.h"
391#endif /* __LITTLE_ENDIAN */
392
393/* 382/*
394 * min()/max()/clamp() macros that also do 383 * min()/max()/clamp() macros that also do
395 * strict type-checking.. See the 384 * strict type-checking.. See the