]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/basic/arphrd-list.c
basic: massively reduce the size of arphdr lookup functions
[thirdparty/systemd.git] / src / basic / arphrd-list.c
index b9a9cb7ed414964cc1a61aa8eb565fabc723056b..7e5570ab9faec7ddeb0524c62a64ec2014f4464a 100644 (file)
@@ -12,17 +12,6 @@ static const struct arphrd_name* lookup_arphrd(register const char *str, registe
 #include "arphrd-from-name.h"
 #include "arphrd-to-name.h"
 
-const char *arphrd_to_name(int id) {
-
-        if (id <= 0)
-                return NULL;
-
-        if ((size_t) id >= ELEMENTSOF(arphrd_names))
-                return NULL;
-
-        return arphrd_names[id];
-}
-
 int arphrd_from_name(const char *name) {
         const struct arphrd_name *sc;
 
@@ -34,7 +23,3 @@ int arphrd_from_name(const char *name) {
 
         return sc->id;
 }
-
-int arphrd_max(void) {
-        return ELEMENTSOF(arphrd_names);
-}