From: Robert Hodaszi <robert.hodaszi@xxxxxxxx> To disable the transmit retries on RT28xx driver, the retry limit should be set to 0. The current lower limit (1) prevents it. Signed-off-by: Robert Hodaszi <robert.hodaszi@xxxxxxxx> --- net/wireless/wext-compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/wireless/wext-compat.c b/net/wireless/wext-compat.c index fff1bef..6e38320 100644 --- a/net/wireless/wext-compat.c +++ b/net/wireless/wext-compat.c @@ -370,7 +370,7 @@ static int cfg80211_wext_siwretry(struct net_device *dev, u8 oshort = wdev->wiphy->retry_short; int err; - if (retry->disabled || retry->value < 1 || retry->value > 255 || + if (retry->disabled || retry->value < 0 || retry->value > 255 || (retry->flags & IW_RETRY_TYPE) != IW_RETRY_LIMIT) return -EINVAL; -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html