aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/ll_proto.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/libiproute/ll_proto.c')
-rw-r--r--networking/libiproute/ll_proto.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/networking/libiproute/ll_proto.c b/networking/libiproute/ll_proto.c
index 4e62e876e..6933ce239 100644
--- a/networking/libiproute/ll_proto.c
+++ b/networking/libiproute/ll_proto.c
@@ -20,6 +20,12 @@
20#include <linux/if_ether.h> 20#include <linux/if_ether.h>
21#endif 21#endif
22 22
23#ifdef UNUSED
24/* Before re-enabling this, please (1) conditionalize exotic protocols
25 * on CONFIG_something, and (2) decouple strings and numbers
26 * (use llproto_ids[] = n,n,n..; and llproto_names[] = "loop\0" "pup\0" ...;)
27 */
28
23#define __PF(f,n) { ETH_P_##f, #n }, 29#define __PF(f,n) { ETH_P_##f, #n },
24static struct { 30static struct {
25 int id; 31 int id;
@@ -90,7 +96,7 @@ __PF(ECONET,econet)
90#undef __PF 96#undef __PF
91 97
92 98
93const char * ll_proto_n2a(unsigned short id, char *buf, int len) 99const char *ll_proto_n2a(unsigned short id, char *buf, int len)
94{ 100{
95 int i; 101 int i;
96 102
@@ -118,3 +124,5 @@ int ll_proto_a2n(unsigned short *id, char *buf)
118 *id = htons(*id); 124 *id = htons(*id);
119 return 0; 125 return 0;
120} 126}
127
128#endif /* UNUSED */