From 8131f239bf847c9b70b63a06099205fce2435251 Mon Sep 17 00:00:00 2001 From: mycroft Date: Fri, 25 Oct 2002 01:35:12 +0000 Subject: [PATCH] IBSS mode does in fact work on some earlier Symbol firmware versions, as witnessed by my home network. --- sys/dev/ic/wi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/dev/ic/wi.c b/sys/dev/ic/wi.c index e82a88846a73..35fb9f6ca165 100644 --- a/sys/dev/ic/wi.c +++ b/sys/dev/ic/wi.c @@ -1,4 +1,4 @@ -/* $NetBSD: wi.c,v 1.100 2002/10/15 08:53:46 onoe Exp $ */ +/* $NetBSD: wi.c,v 1.101 2002/10/25 01:35:12 mycroft Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -70,7 +70,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: wi.c,v 1.100 2002/10/15 08:53:46 onoe Exp $"); +__KERNEL_RCSID(0, "$NetBSD: wi.c,v 1.101 2002/10/25 01:35:12 mycroft Exp $"); #define WI_HERMES_AUTOINC_WAR /* Work around data write autoinc bug. */ #define WI_HERMES_STATS_WAR /* Work around stats counter bug. */ @@ -298,7 +298,7 @@ wi_attach(struct wi_softc *sc) case WI_SYMBOL: sc->sc_flags |= WI_FLAGS_HAS_DIVERSITY; - if (sc->sc_sta_firmware_ver >= 25000) + if (sc->sc_sta_firmware_ver >= 20000) ic->ic_flags |= IEEE80211_F_HASIBSS; sc->sc_ibss_port = 4; break;