From: Vladimir Kondratiev Date: Tue, 28 May 2013 12:17:52 +0000 (+0300) Subject: wil6210: channel off by 1 X-Git-Tag: v3.11-rc1~16^2~103^2^2~40 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=adc2d1225bed4bbf68473e6b5c4b91d2445609cb;p=~emulex%2Finfiniband.git wil6210: channel off by 1 WMI commands wants channel index, that is channel - 1 Signed-off-by: Vladimir Kondratiev Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/ath/wil6210/wmi.c b/drivers/net/wireless/ath/wil6210/wmi.c index 5e01f4ee4de..a091eb11e39 100644 --- a/drivers/net/wireless/ath/wil6210/wmi.c +++ b/drivers/net/wireless/ath/wil6210/wmi.c @@ -728,7 +728,7 @@ int wmi_pcp_start(struct wil6210_priv *wil, int bi, u8 wmi_nettype, u8 chan) .bcon_interval = cpu_to_le16(bi), .network_type = wmi_nettype, .disable_sec_offload = 1, - .channel = chan, + .channel = chan - 1, }; struct { struct wil6210_mbox_hdr_wmi wmi;