lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sat, 30 May 2020 17:03:22 +0300 From: Vladimir Oltean <olteanv@...il.com> To: andrew@...n.ch, f.fainelli@...il.com, vivien.didelot@...il.com, davem@...emloft.net Cc: netdev@...r.kernel.org Subject: [PATCH net-next] net: dsa: sja1105: suppress -Wmissing-prototypes in sja1105_vl.c From: Vladimir Oltean <vladimir.oltean@....com> Newer C compilers are complaining about the fact that there are no function prototypes in sja1105_vl.c for the non-static functions. Give them what they want. Signed-off-by: Vladimir Oltean <vladimir.oltean@....com> --- drivers/net/dsa/sja1105/sja1105_vl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/dsa/sja1105/sja1105_vl.c b/drivers/net/dsa/sja1105/sja1105_vl.c index f37611885376..41ef95e750aa 100644 --- a/drivers/net/dsa/sja1105/sja1105_vl.c +++ b/drivers/net/dsa/sja1105/sja1105_vl.c @@ -3,6 +3,7 @@ */ #include <net/tc_act/tc_gate.h> #include <linux/dsa/8021q.h> +#include "sja1105_vl.h" #include "sja1105.h" #define SJA1105_SIZE_VL_STATUS 8 -- 2.25.1
Powered by blists - more mailing lists