Don't duplicate checks; net80211 now does this for us.

Submitted by:	s3erios@gmail.com
This commit is contained in:
Adrian Chadd 2015-09-26 13:22:44 +00:00
parent 0b33261bbe
commit cc43c3e8a7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=288263

View File

@ -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__);