]> git.itanic.dy.fi Git - linux-stable/commitdiff
wlcore: no need to initialise statics to false
authorJason Wang <wangborong@cdjrlc.com>
Sat, 13 Nov 2021 06:35:51 +0000 (14:35 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Mon, 29 Nov 2021 10:44:10 +0000 (12:44 +0200)
Static variables do not need to be initialized to false. The
compiler will do that.

Signed-off-by: Jason Wang <wangborong@cdjrlc.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211113063551.257804-1-wangborong@cdjrlc.com
drivers/net/wireless/ti/wlcore/sdio.c

index 9fd8cf2d270cc600a193ba0c252cac8755cdf5ec..72fc41ac83c0d0a0c9da1bba7b94b98ccaa2b0bf 100644 (file)
@@ -26,7 +26,7 @@
 #include "wl12xx_80211.h"
 #include "io.h"
 
-static bool dump = false;
+static bool dump;
 
 struct wl12xx_sdio_glue {
        struct device *dev;