]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[NET] core/utils.c: digit2bin is dead static inline
authorIlpo Järvinen <ilpo.jarvinen@helsinki.fi>
Sun, 13 Jan 2008 05:28:37 +0000 (21:28 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 23:01:58 +0000 (15:01 -0800)
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/utils.c

index 34459c4c740c91ba3f17f1946e4aa3e591ea1990..8031eb59054e057f4556f0cf4f4d251020f57b0d 100644 (file)
@@ -91,17 +91,6 @@ EXPORT_SYMBOL(in_aton);
 #define IN6PTON_NULL           0x20000000      /* first/tail */
 #define IN6PTON_UNKNOWN                0x40000000
 
-static inline int digit2bin(char c, int delim)
-{
-       if (c == delim || c == '\0')
-               return IN6PTON_DELIM;
-       if (c == '.')
-               return IN6PTON_DOT;
-       if (c >= '0' && c <= '9')
-               return (IN6PTON_DIGIT | (c - '0'));
-       return IN6PTON_UNKNOWN;
-}
-
 static inline int xdigit2bin(char c, int delim)
 {
        if (c == delim || c == '\0')