From 0d249af98c9a2bb892c2133976b3c88e35b22228 Mon Sep 17 00:00:00 2001 From: bz Date: Fri, 15 Nov 2019 11:00:03 +0000 Subject: [PATCH] if_llatbl: cleanup Remove function prototypes which are not needed (no use before function definition for these file static functions). MFC after: 3 weeks Sponsored by: Netflix --- sys/net/if_llatbl.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sys/net/if_llatbl.c b/sys/net/if_llatbl.c index 289c36ce7597..f0366a2738e6 100644 --- a/sys/net/if_llatbl.c +++ b/sys/net/if_llatbl.c @@ -80,11 +80,6 @@ RW_SYSINIT(lltable_list_lock, &lltable_list_lock, "lltable_list_lock"); static void lltable_unlink(struct lltable *llt); static void llentries_unlink(struct lltable *llt, struct llentries *head); -static void htable_unlink_entry(struct llentry *lle); -static void htable_link_entry(struct lltable *llt, struct llentry *lle); -static int htable_foreach_lle(struct lltable *llt, llt_foreach_cb_t *f, - void *farg); - /* * Dump lle state for a specific address family. */