Commit fa4408b0 authored by Jason Wang's avatar Jason Wang Committed by Kalle Valo

wlcore: no need to initialise statics to false

Static variables do not need to be initialized to false. The
compiler will do that.
Signed-off-by: default avatarJason Wang <wangborong@cdjrlc.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211113063551.257804-1-wangborong@cdjrlc.com
parent f1cb3476
......@@ -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;
......
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