From: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
To: Guenter Roeck <linux@roeck-us.net>
Cc: "John W. Linville" <linville@tuxdriver.com>,
<linux-wireless@vger.kernel.org>, <wil6210@qca.qualcomm.com>,
<netdev@vger.kernel.org>
Subject: Re: [PATCH] net: wireless/ath: Fix compile error seen with W=1
Date: Mon, 28 Jan 2013 12:55:37 +0200 [thread overview]
Message-ID: <1368762.AOqRHlT7Ra@lx-vladimir> (raw)
In-Reply-To: <1359253568-15762-1-git-send-email-linux@roeck-us.net>
On Saturday, January 26, 2013 06:26:08 PM Guenter Roeck wrote:
> make W=1 for x86_64 fails with
>
> drivers/net/wireless/ath/wil6210/txrx.c: In function ‘wil_rx_fini’:
> drivers/net/wireless/ath/wil6210/txrx.c:550:7: error: variable ‘rc’ set but not
> used [-Werror=unused-but-set-variable]
>
> Fix by dropping the variable.
>
> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/net/wireless/ath/wil6210/txrx.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/ath/wil6210/txrx.c b/drivers/net/wireless/ath/wil6210/txrx.c
> index f29c294..b6e8042 100644
> --- a/drivers/net/wireless/ath/wil6210/txrx.c
> +++ b/drivers/net/wireless/ath/wil6210/txrx.c
> @@ -547,7 +547,6 @@ void wil_rx_fini(struct wil6210_priv *wil)
> struct vring *vring = &wil->vring_rx;
>
> if (vring->va) {
> - int rc;
> struct wmi_cfg_rx_chain_cmd cmd = {
> .action = cpu_to_le32(WMI_RX_CHAIN_DEL),
> .rx_sw_ring = {
> @@ -559,7 +558,7 @@ void wil_rx_fini(struct wil6210_priv *wil)
> struct wmi_cfg_rx_chain_done_event cfg;
> } __packed wmi_rx_cfg_reply;
>
> - rc = wmi_call(wil, WMI_CFG_RX_CHAIN_CMDID, &cmd, sizeof(cmd),
> + (void)wmi_call(wil, WMI_CFG_RX_CHAIN_CMDID, &cmd, sizeof(cmd),
> WMI_CFG_RX_CHAIN_DONE_EVENTID,
> &wmi_rx_cfg_reply, sizeof(wmi_rx_cfg_reply),
> 100);
>
Thanks for finding it.
I will send series of new patches shortly. This will include changes in
rx chain initialization that, among other, remove fragment you fixed.
Reason is firmware API changes.
Thanks, Vladimir
prev parent reply other threads:[~2013-01-28 10:55 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-27 2:26 [PATCH] net: wireless/ath: Fix compile error seen with W=1 Guenter Roeck
2013-01-28 10:55 ` Vladimir Kondratiev [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1368762.AOqRHlT7Ra@lx-vladimir \
--to=qca_vkondrat@qca.qualcomm.com \
--cc=linux-wireless@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=linville@tuxdriver.com \
--cc=netdev@vger.kernel.org \
--cc=wil6210@qca.qualcomm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox