Lines Matching refs:threshold
4964 static int ipw2100_set_rts_threshold(struct ipw2100_priv *priv, u32 threshold) in ipw2100_set_rts_threshold() argument
4973 if (threshold & RTS_DISABLED) in ipw2100_set_rts_threshold()
4976 cmd.host_command_parameters[0] = threshold & ~RTS_DISABLED; in ipw2100_set_rts_threshold()
4982 priv->rts_threshold = threshold; in ipw2100_set_rts_threshold()
4989 u32 threshold, int batch_mode)
5005 if (threshold == 0)
5006 threshold = DEFAULT_FRAG_THRESHOLD;
5008 threshold = max(threshold, MIN_FRAG_THRESHOLD);
5009 threshold = min(threshold, MAX_FRAG_THRESHOLD);
5012 cmd.host_command_parameters[0] = threshold;
5014 IPW_DEBUG_HC("FRAG_THRESHOLD: %u\n", threshold);
5022 priv->frag_threshold = threshold;