Lines Matching defs:rts
2476 static int ipw_send_rts_threshold(struct ipw_priv *priv, u16 rts)
2479 .rts_threshold = cpu_to_le16(rts),
9208 if (wrqu->rts.disabled || !wrqu->rts.fixed)
9211 if (wrqu->rts.value < MIN_RTS_THRESHOLD ||
9212 wrqu->rts.value > MAX_RTS_THRESHOLD) {
9216 priv->rts_threshold = wrqu->rts.value;
9231 wrqu->rts.value = priv->rts_threshold;
9232 wrqu->rts.fixed = 0; /* no auto select */
9233 wrqu->rts.disabled = (wrqu->rts.value == DEFAULT_RTS_THRESHOLD);
9235 IPW_DEBUG_WX("GET RTS Threshold -> %d\n", wrqu->rts.value);