X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=src%2Fbasic%2Farphrd-list.c;fp=src%2Fbasic%2Farphrd-list.c;h=7e5570ab9faec7ddeb0524c62a64ec2014f4464a;hb=7e833f301eeca5114be3315ec4f4385cf34977af;hp=b9a9cb7ed414964cc1a61aa8eb565fabc723056b;hpb=5a2904a2f7661526cfbdb19d8d425dad11afc03c;p=thirdparty%2Fsystemd.git diff --git a/src/basic/arphrd-list.c b/src/basic/arphrd-list.c index b9a9cb7ed41..7e5570ab9fa 100644 --- a/src/basic/arphrd-list.c +++ b/src/basic/arphrd-list.c @@ -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); -}