From: Arik Nemtsov Date: Mon, 25 Jun 2012 19:26:19 +0000 (+0300) Subject: wlcore: avoid debug prints during intended FW recovery X-Git-Tag: upstream/snapshot3+hdmi~6997^2~57^2~120 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aafec111dd2b74f2ec0f55f0c79144f6558d9205;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git wlcore: avoid debug prints during intended FW recovery Don't read the FW panic log or print other debug data when recovery is intended (i.e. FW type switch). This takes valuable time and can be confusing to the user. Signed-off-by: Arik Nemtsov Signed-off-by: Luciano Coelho --- diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c index 7abb02a..c5b8c5c 100644 --- a/drivers/net/wireless/ti/wlcore/main.c +++ b/drivers/net/wireless/ti/wlcore/main.c @@ -916,9 +916,10 @@ static void wl1271_recovery_work(struct work_struct *work) if (wl->state != WL1271_STATE_ON || wl->plt) goto out_unlock; - wl12xx_read_fwlog_panic(wl); - - wlcore_print_recovery(wl); + if (!test_bit(WL1271_FLAG_INTENDED_FW_RECOVERY, &wl->flags)) { + wl12xx_read_fwlog_panic(wl); + wlcore_print_recovery(wl); + } BUG_ON(bug_on_recovery && !test_bit(WL1271_FLAG_INTENDED_FW_RECOVERY, &wl->flags));