summaryrefslogtreecommitdiff
path: root/sys/net/if_mpw.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2024-05-13 01:15:54 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2024-05-13 01:15:54 +0000
commit385a3caf2ecaf3de07747290e79fa8d1f7c618b5 (patch)
treed780db673ed87979f4e761beb9fceda2b7594fe4 /sys/net/if_mpw.c
parentf30876db80c9d1c4d008da7e477105227561aabc (diff)
remove prototypes with no matching function
ok mpi@
Diffstat (limited to 'sys/net/if_mpw.c')
-rw-r--r--sys/net/if_mpw.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/net/if_mpw.c b/sys/net/if_mpw.c
index 934a757bb41..993e77f997f 100644
--- a/sys/net/if_mpw.c
+++ b/sys/net/if_mpw.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_mpw.c,v 1.65 2023/12/23 10:52:54 bluhm Exp $ */
+/* $OpenBSD: if_mpw.c,v 1.66 2024/05/13 01:15:53 jsg Exp $ */
/*
* Copyright (c) 2015 Rafael Zalamena <rzalamena@openbsd.org>
@@ -17,7 +17,6 @@
*/
#include "bpfilter.h"
-#include "vlan.h"
#include <sys/param.h>
#include <sys/systm.h>
@@ -40,10 +39,6 @@
#include <net/bpf.h>
#endif /* NBPFILTER */
-#if NVLAN > 0
-#include <net/if_vlan_var.h>
-#endif
-
struct mpw_neighbor {
struct shim_hdr n_rshim;
struct sockaddr_storage n_nexthop;
@@ -75,9 +70,6 @@ int mpw_ioctl(struct ifnet *, u_long, caddr_t);
int mpw_output(struct ifnet *, struct mbuf *, struct sockaddr *,
struct rtentry *);
void mpw_start(struct ifnet *);
-#if NVLAN > 0
-struct mbuf *mpw_vlan_handle(struct mbuf *, struct mpw_softc *);
-#endif /* NVLAN */
struct if_clone mpw_cloner =
IF_CLONE_INITIALIZER("mpw", mpw_clone_create, mpw_clone_destroy);