]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
libertas: don't use __lbs_cmd() with empty callback in if_usb.c
authorDavid Woodhouse <dwmw2@infradead.org>
Sat, 15 Dec 2007 06:22:09 +0000 (01:22 -0500)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 23:07:30 +0000 (15:07 -0800)
We're about to change semantics, leaving callers of
lbs_prepare_and_send_command() with the old broken priv->cur_cmd_retcode
crap. The existence of the callback command will be the trigger for the
new semantics when handling the response.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/libertas/if_usb.c

index 396ce676cad72a79a6bb0cf8e28320e46eaffb85..cf882517ceafea4889d6c40d1fb0d0e1f4b5db03 100644 (file)
@@ -109,7 +109,7 @@ static void if_usb_set_boot2_ver(struct lbs_private *priv)
        b2_cmd.action = 0;
        b2_cmd.version = priv->boot2_version;
 
-       if (lbs_cmd(priv, CMD_SET_BOOT2_VER, &b2_cmd, NULL, 0))
+       if (lbs_cmd_with_response(priv, CMD_SET_BOOT2_VER, &b2_cmd))
                lbs_deb_usb("Setting boot2 version failed\n");
 }