svn commit: r288263 - head/sys/dev/wpi
Adrian Chadd
adrian at FreeBSD.org
Sat Sep 26 13:22:45 UTC 2015
Author: adrian
Date: Sat Sep 26 13:22:44 2015
New Revision: 288263
URL: https://svnweb.freebsd.org/changeset/base/288263
Log:
Don't duplicate checks; net80211 now does this for us.
Submitted by: s3erios at gmail.com
Modified:
head/sys/dev/wpi/if_wpi.c
Modified: head/sys/dev/wpi/if_wpi.c
==============================================================================
--- head/sys/dev/wpi/if_wpi.c Sat Sep 26 12:53:55 2015 (r288262)
+++ head/sys/dev/wpi/if_wpi.c Sat Sep 26 13:22:44 2015 (r288263)
@@ -3954,14 +3954,6 @@ wpi_config(struct wpi_softc *sc)
sc->rxon.cck_mask = 0x0f; /* not yet negotiated */
sc->rxon.ofdm_mask = 0xff; /* not yet negotiated */
- /* XXX Current configuration may be unusable. */
- if (IEEE80211_IS_CHAN_NOADHOC(c) && sc->rxon.mode == WPI_MODE_IBSS) {
- device_printf(sc->sc_dev,
- "%s: invalid channel (%d) selected for IBSS mode\n",
- __func__, ieee80211_chan2ieee(ic, c));
- return EINVAL;
- }
-
if ((error = wpi_send_rxon(sc, 0, 0)) != 0) {
device_printf(sc->sc_dev, "%s: could not send RXON\n",
__func__);
More information about the svn-src-all
mailing list