Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8519660b authored by Ilpo Järvinen's avatar Ilpo Järvinen Committed by David S. Miller
Browse files

[NET] core/utils.c: digit2bin is dead static inline

parent 112d8cfc
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
@@ -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')