Re: [PATCH] net-sysfs: fix missing

2016-06-08 Thread David Miller
From: Ben Dooks Date: Tue, 7 Jun 2016 19:27:51 +0100 > The of_find_net_device_by_node() function is defined in > but not included in the .c file that > implements it. Fix the following warning by including the > header: > > net/core/net-sysfs.c:1494:19: warning: symbol 'of_find_net_device_by_n

[PATCH] net-sysfs: fix missing

2016-06-07 Thread Ben Dooks
The of_find_net_device_by_node() function is defined in but not included in the .c file that implements it. Fix the following warning by including the header: net/core/net-sysfs.c:1494:19: warning: symbol 'of_find_net_device_by_node' was not declared. Should it be static? Signed-off-by: Ben Doo