mirror of https://gitee.com/openkylin/linux.git
net: fec: make local function fec_poll_controller() static
fec_poll_controller() was not declared. It should be static. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e052a5893b
commit
47a5247fdd
|
@ -1556,7 +1556,7 @@ fec_set_mac_address(struct net_device *ndev, void *p)
|
||||||
* Polled functionality used by netconsole and others in non interrupt mode
|
* Polled functionality used by netconsole and others in non interrupt mode
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void fec_poll_controller(struct net_device *dev)
|
static void fec_poll_controller(struct net_device *dev)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
struct fec_enet_private *fep = netdev_priv(dev);
|
struct fec_enet_private *fep = netdev_priv(dev);
|
||||||
|
|
Loading…
Reference in New Issue