diff options
author | Joe Perches <joe@perches.com> | 2010-08-09 20:20:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-09 23:45:05 -0400 |
commit | cf4ca4874fc45166198424384275f443a672d0b7 (patch) | |
tree | 2192ff3880b11c8f4ad495a22a11c2af09f41989 | |
parent | cb8a88b24bd7e3e7cf65e425f8f12d6a12371738 (diff) |
kernel.h: remove unused NIPQUAD and NIPQUAD_FMT
There are no more uses of NIPQUAD or NIPQUAD_FMT. Remove the definitions.
Signed-off-by: Joe Perches <joe@perches.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/kernel.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 7d5b10ff63e0..5b57236dfbd0 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -616,17 +616,6 @@ static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { } | |||
616 | #endif /* CONFIG_TRACING */ | 616 | #endif /* CONFIG_TRACING */ |
617 | 617 | ||
618 | /* | 618 | /* |
619 | * Display an IP address in readable format. | ||
620 | */ | ||
621 | |||
622 | #define NIPQUAD(addr) \ | ||
623 | ((unsigned char *)&addr)[0], \ | ||
624 | ((unsigned char *)&addr)[1], \ | ||
625 | ((unsigned char *)&addr)[2], \ | ||
626 | ((unsigned char *)&addr)[3] | ||
627 | #define NIPQUAD_FMT "%u.%u.%u.%u" | ||
628 | |||
629 | /* | ||
630 | * min()/max()/clamp() macros that also do | 619 | * min()/max()/clamp() macros that also do |
631 | * strict type-checking.. See the | 620 | * strict type-checking.. See the |
632 | * "unnecessary" pointer comparison. | 621 | * "unnecessary" pointer comparison. |