Commit faff7f74 authored by Gustavo Padovan's avatar Gustavo Padovan

Bluetooth: remove unneeded var initialization in btmrvl

There is no need to init ret to zero in  btmrvl_sdio_download_fw().
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 76a388be
......@@ -874,7 +874,7 @@ static int btmrvl_sdio_host_to_card(struct btmrvl_private *priv,
static int btmrvl_sdio_download_fw(struct btmrvl_sdio_card *card)
{
int ret = 0;
int ret;
u8 fws0;
int pollnum = MAX_POLL_TRIES;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment