From: Vladimir Oltean <vladimir.olt...@nxp.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.olt...@nxp.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