From: Rashika Kheria Date: Sat, 14 Dec 2013 12:30:25 +0000 (+0530) Subject: drivers: net: Mark functions as static in debug.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c8aa5ab7d53b71fd019a2ee03d9b39517a89ff00;p=linux-beck.git drivers: net: Mark functions as static in debug.c This patch marks the function il_clear_traffic_stats() in debug.c as static because they are not used outside this file. Thus, it also removes the following warnings in wireless/iwlegacy/debug.c: drivers/net/wireless/iwlegacy/debug.c:35:1: warning: no previous prototype for ‘il_clear_traffic_stats’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria Reviewed-by: Josh Triplett Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/iwlegacy/debug.c b/drivers/net/wireless/iwlegacy/debug.c index 3a487a3bb5de..344010153196 100644 --- a/drivers/net/wireless/iwlegacy/debug.c +++ b/drivers/net/wireless/iwlegacy/debug.c @@ -31,7 +31,7 @@ #include "common.h" -void +static void il_clear_traffic_stats(struct il_priv *il) { memset(&il->tx_stats, 0, sizeof(struct traffic_stats));