summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2007-04-11 21:38:51 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2007-04-11 21:38:51 +0000
commitbaeb4026991c7ff4275043e45412654f10e20dd1 (patch)
tree9a29a1a82deafec87a84fdec3cdcd733914383c0 /sys/dev/ic
parentcb3a7040897423f6db6fc92e8045b735a671607c (diff)
Remove debug leftovers to make console output quite again in hostap mode.
ok claudio@
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/acx.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c
index b51d2232278..b3244bca3bd 100644
--- a/sys/dev/ic/acx.c
+++ b/sys/dev/ic/acx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acx.c,v 1.72 2007/04/11 19:49:11 mglocker Exp $ */
+/* $OpenBSD: acx.c,v 1.73 2007/04/11 21:38:50 mglocker Exp $ */
/*
* Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
@@ -2375,8 +2375,6 @@ acx_beacon_locate(struct mbuf *m, u_int8_t type)
off = sizeof(struct ieee80211_frame) + 8 + 2 + 2;
frm = mtod(m, u_int8_t *);
for (; off + 1 < m->m_len; off += frm[off + 1] + 2) {
- printf("acx_beacon_locate: off %d type %x len %x\n",
- off, frm[off], frm[off + 1]);
if (frm[off] == type)
return (off);
}
@@ -2401,8 +2399,6 @@ acx_set_beacon_tmplt(struct acx_softc *sc, struct ieee80211_node *ni)
return (1);
off = acx_beacon_locate(m, IEEE80211_ELEMID_TIM);
- printf("acx_set_beacon_tmplt: acx_beacon_locate TIM off %d len %d\n",
- off, m->m_pkthdr.len);
m_copydata(m, 0, off, (caddr_t)&beacon.data);
len = off + sizeof(beacon.size);