Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Mar 2008 23:22:20 GMT
From:      Andrew Thompson <thompsa@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 136957 for review
Message-ID:  <200803052322.m25NMK9s013372@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=136957

Change 136957 by thompsa@thompsa_peeps on 2008/03/05 23:22:18

	Always update the node table in the firmware for -> AUTH.

Affected files ...

.. //depot/projects/wifi/sys/dev/wpi/if_wpi.c#18 edit

Differences ...

==== //depot/projects/wifi/sys/dev/wpi/if_wpi.c#18 (text+ko) ====

@@ -1260,10 +1260,7 @@
 
 	case IEEE80211_S_AUTH:
 		/* Delay the auth transition until we can update the firmware */
-		if (ic->ic_state != IEEE80211_S_AUTH)
-			return wpi_queue_cmd(sc, WPI_AUTH, arg,
-			    WPI_QUEUE_NORMAL);
-		break;
+		return wpi_queue_cmd(sc, WPI_AUTH, arg, WPI_QUEUE_NORMAL);
 
 	case IEEE80211_S_RUN:
 		if (ic->ic_opmode == IEEE80211_M_MONITOR) {
@@ -1281,7 +1278,7 @@
 		break;
 	}
 
-	return (*sc->sc_newstate)(ic, nstate, arg);
+	return sc->sc_newstate(ic, nstate, arg);
 }
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200803052322.m25NMK9s013372>