/src/sys/external/isc/atheros_hal/dist/ar5212/ |
ar5212_beacon.c | 127 uint32_t nextTbtt, nextdtim,beaconintval, dtimperiod; local in function:ar5212SetStaBeaconTimers 214 dtimperiod = bs->bs_dtimperiod; 215 if (bs->bs_sleepduration > dtimperiod) { 216 HALASSERT(dtimperiod == 0 || 217 roundup(bs->bs_sleepduration, dtimperiod) == 219 dtimperiod = bs->bs_sleepduration; 221 HALASSERT(beaconintval <= dtimperiod); 222 if (beaconintval == dtimperiod) 240 | SM(dtimperiod, AR_SLEEP3_DTIM_PERIOD) 249 __func__, dtimperiod); [all...] |
/src/sys/external/isc/atheros_hal/dist/ar5416/ |
ar5416_beacon.c | 141 uint32_t nextTbtt,beaconintval, dtimperiod; local in function:ar5416SetStaBeaconTimers 205 dtimperiod = bs->bs_dtimperiod; 206 if (bs->bs_sleepduration > dtimperiod) { 207 HALASSERT(dtimperiod == 0 || 208 roundup(bs->bs_sleepduration, dtimperiod) == 210 dtimperiod = bs->bs_sleepduration; 212 HALASSERT(beaconintval <= dtimperiod); 213 if (beaconintval == dtimperiod) 231 OS_REG_WRITE(ah, AR_DTIM_PERIOD, dtimperiod); 241 __func__, dtimperiod); [all...] |
/src/sys/dev/pcmcia/ |
if_malo_pcmciavar.h | 193 uint8_t dtimperiod; member in struct:malo_cmd_body_assoc
|
/src/sys/dev/ic/ |
ath.c | 2494 int dtimperiod, dtimcount; local in function:ath_beacon_config 2501 dtimperiod = ni->ni_dtim_period; 2502 if (dtimperiod <= 0) /* NB: 0 if not known */ 2503 dtimperiod = 1; 2505 if (dtimcount >= dtimperiod) /* NB: sanity check */ 2518 dtimcount = dtimperiod - 1; 2526 bs.bs_dtimperiod = dtimperiod*intval;
|