Hi Folks I found a silly typo in net/mac80211/ieee80211_ioctl.c:ieee80211_ioctl_siwfreq(). The parameters passed to ieee80211_set_channel() should be (local, channel, freq), but in one instance it passes (local, freq, channel) which results in an EINVAL. Andrew Signed-off-by: Andrew Lunn, <andrew@xxxxxxx> --- diff --git a/net/mac80211/ieee80211_ioctl.c b/net/mac80211/ieee80211_ioctl.c index 7027eed..d4a032e 100644 --- a/net/mac80211/ieee80211_ioctl.c +++ b/net/mac80211/ieee80211_ioctl.c @@ -344,7 +344,7 @@ static int ieee80211_ioctl_siwfreq(struct net_device *dev, IEEE80211_STA_AUTO_CHANNEL_SEL; return 0; } else - return ieee80211_set_channel(local, freq->m, -1); + return ieee80211_set_channel(local, -1, freq->m); } else { int i, div = 1000000; for (i = 0; i < freq->e; i++) - 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