]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[IPV4]: Remove unused IPV4TYPE macros
authorJoe Perches <joe@perches.com>
Sun, 16 Dec 2007 21:48:11 +0000 (13:48 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 22:58:18 +0000 (14:58 -0800)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/in.h

index f8d60737901793422bb6b26331eaa2c1e7e661c3..27d8a5ae9f7589973395e501aa4f5c0b81077ef6 100644 (file)
@@ -272,12 +272,6 @@ static inline bool ipv4_is_zeronet(__be32 addr)
        return (addr & htonl(0xff000000)) == htonl(0x00000000);
 }
 
-#define LOOPBACK(x)            ipv4_is_loopback(x)
-#define MULTICAST(x)           ipv4_is_multicast(x)
-#define BADCLASS(x)            ipv4_is_badclass(x)
-#define ZERONET(x)             ipv4_is_zeronet(x)
-#define LOCAL_MCAST(x)         ipv4_is_local_multicast(x)
-
 /* Special-Use IPv4 Addresses (RFC3330) */
 
 static inline bool ipv4_is_private_10(__be32 addr)
@@ -316,12 +310,4 @@ static inline bool ipv4_is_test_198(__be32 addr)
 }
 #endif
 
-#define PRIVATE_10(x)          ipv4_is_private_10(x)
-#define LINKLOCAL_169(x)       ipv4_is_linklocal_169(x)
-#define PRIVATE_172(x)         ipv4_is_private_172(x)
-#define TEST_192(x)            ipv4_is_test_192(x)
-#define ANYCAST_6TO4(x)                ipv4_is_anycast_6to4(x)
-#define PRIVATE_192(x)         ipv4_is_private_192(x)
-#define TEST_198(x)            ipv4_is_test_198(x)
-
 #endif /* _LINUX_IN_H */