summaryrefslogtreecommitdiff
path: root/sys/dev/cm
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2003-01-30 15:55:02 +0000
committerMax Khon <fjoe@FreeBSD.org>2003-01-30 15:55:02 +0000
commit6b58184eb0fa49a1aeb7e6284348fd4ebdd4ca26 (patch)
tree15b17f4f4463a8f35b0318e32c1d048c045660c0 /sys/dev/cm
parent12c8b341d8a2dd6f3964b962e993e1f96a310e1e (diff)
Notes
Diffstat (limited to 'sys/dev/cm')
-rw-r--r--sys/dev/cm/smc90cx6.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/sys/dev/cm/smc90cx6.c b/sys/dev/cm/smc90cx6.c
index df4c3e7ab55e..9347b5d2bb68 100644
--- a/sys/dev/cm/smc90cx6.c
+++ b/sys/dev/cm/smc90cx6.c
@@ -68,13 +68,6 @@
#include <net/if_dl.h>
#include <net/if_types.h>
#include <net/if_arc.h>
-#include <net/bpf.h>
-
-#if 0
-#if NBPFILTER > 0
-#include <net/bpfdesc.h>
-#endif
-#endif
#include <dev/cm/smc90cx6reg.h>
#include <dev/cm/smc90cx6var.h>
@@ -512,15 +505,6 @@ cm_start(ifp)
if (m == 0)
return;
- /*
- * If bpf is listening on this interface, let it
- * see the packet before we commit it to the wire
- *
- * (can't give the copy in A2060 card RAM to bpf, because
- * that RAM is just accessed as on every other byte)
- */
- BPF_MTAP(ifp, m);
-
#ifdef CM_DEBUG
if (m->m_len < ARC_HDRLEN)
m = m_pullup(m, ARC_HDRLEN);/* gcc does structure padding */