[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20151021171853.GA82900@lkp-ib04.intel.com>
Date: Thu, 22 Oct 2015 01:18:53 +0800
From: kbuild test robot <lkp@...el.com>
To: Michael Grzeschik <m.grzeschik@...gutronix.de>
Cc: kbuild-all@...org, davem@...emloft.net, netdev@...r.kernel.org,
kernel@...gutronix.de
Subject: [RFC PATCH] arcnet: com20020: com20020_netdev_open() can be static
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---
com20020.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/arcnet/com20020.c b/drivers/net/arcnet/com20020.c
index 436951b..13d9ad4 100644
--- a/drivers/net/arcnet/com20020.c
+++ b/drivers/net/arcnet/com20020.c
@@ -164,7 +164,7 @@ static int com20020_set_hwaddr(struct net_device *dev, void *addr)
return 0;
}
-int com20020_netdev_open(struct net_device *dev)
+static int com20020_netdev_open(struct net_device *dev)
{
int ioaddr = dev->base_addr;
struct arcnet_local *lp = netdev_priv(dev);
@@ -175,7 +175,7 @@ int com20020_netdev_open(struct net_device *dev)
return arcnet_open(dev);
}
-int com20020_netdev_close(struct net_device *dev)
+static int com20020_netdev_close(struct net_device *dev)
{
int ioaddr = dev->base_addr;
struct arcnet_local *lp = netdev_priv(dev);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists