]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
mwifiex: do not print dot when downloading FW
authorStanislaw Gruszka <sgruszka@redhat.com>
Thu, 25 Aug 2016 15:05:18 +0000 (17:05 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Sat, 3 Sep 2016 17:03:26 +0000 (20:03 +0300)
Printing about 3000 lines like this

[   20.691850] mwifiex_pcie 0000:02:00.0: .
[   20.693466] mwifiex_pcie 0000:02:00.0: .

is not useful. If FW downloading will be interrupted, we will get
proper error message about that.

Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/marvell/mwifiex/pcie.c

index 2f555b0ebf7df6b12c634c257b6c924dabdf4783..50a6a531ed184a3bda9fd3a6614990b6b05cf659 100644 (file)
@@ -1956,8 +1956,6 @@ static int mwifiex_prog_fw_w_helper(struct mwifiex_adapter *adapter,
                        if (firmware_len - offset < txlen)
                                txlen = firmware_len - offset;
 
-                       mwifiex_dbg(adapter, INFO, ".");
-
                        tx_blocks = (txlen + card->pcie.blksz_fw_dl - 1) /
                                    card->pcie.blksz_fw_dl;