Commit 5668958f authored by Sohaib Mohamed's avatar Sohaib Mohamed Committed by Kalle Valo

bcma: drop unneeded initialization value

Do not initialise statics to 0
ERROR found by checkpatch.pl
Signed-off-by: default avatarSohaib Mohamed <sohaib.amhmd@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210930194920.15847-1-sohaib.amhmd@gmail.com
parent 49c3eb30
...@@ -20,7 +20,7 @@ MODULE_DESCRIPTION("Broadcom's specific AMBA driver"); ...@@ -20,7 +20,7 @@ MODULE_DESCRIPTION("Broadcom's specific AMBA driver");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
/* contains the number the next bus should get. */ /* contains the number the next bus should get. */
static unsigned int bcma_bus_next_num = 0; static unsigned int bcma_bus_next_num;
/* bcma_buses_mutex locks the bcma_bus_next_num */ /* bcma_buses_mutex locks the bcma_bus_next_num */
static DEFINE_MUTEX(bcma_buses_mutex); static DEFINE_MUTEX(bcma_buses_mutex);
......
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