View | Details | Raw Unified | Return to bug 197143 | Differences between
and this patch

Collapse All | Expand All

(-)sys/dev/wpi/if_wpi.c (-1 / +2 lines)
Lines 4311-4317 Link Here
4311
	callout_reset(&sc->calib_to, 60*hz, wpi_calib_timeout, sc);
4311
	callout_reset(&sc->calib_to, 60*hz, wpi_calib_timeout, sc);
4312
4312
4313
	/* Enable power-saving mode if requested by user. */
4313
	/* Enable power-saving mode if requested by user. */
4314
	if (vap->iv_flags & IEEE80211_F_PMGTON)
4314
	if ((vap->iv_flags & IEEE80211_F_PMGTON) &&
4315
	    vap->iv_opmode != IEEE80211_M_IBSS)
4315
		(void)wpi_set_pslevel(sc, 0, 3, 1);
4316
		(void)wpi_set_pslevel(sc, 0, 3, 1);
4316
	else
4317
	else
4317
		(void)wpi_set_pslevel(sc, 0, 0, 1);
4318
		(void)wpi_set_pslevel(sc, 0, 0, 1);

Return to bug 197143