Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 888432f6 authored by Hannes Eder's avatar Hannes Eder Committed by David S. Miller
Browse files

drivers/net/arcnet: fix sparse warnings: make symbols static



Fix this sparse warnings:

  drivers/net/arcnet/capmode.c:64:6: warning: symbol 'arcnet_cap_init' was not declared. Should it be static?
  drivers/net/arcnet/com90xx.c:586:5: warning: symbol 'com90xx_reset' was not declared. Should it be static?

Signed-off-by: default avatarHannes Eder <hannes@hanneseder.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent dac499f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ static struct ArcProto capmode_proto =
};


void arcnet_cap_init(void)
static void arcnet_cap_init(void)
{
	int count;

+1 −1
Original line number Diff line number Diff line
@@ -583,7 +583,7 @@ static void com90xx_setmask(struct net_device *dev, int mask)
 *
 * However, it does make sure the card is in a defined state.
 */
int com90xx_reset(struct net_device *dev, int really_reset)
static int com90xx_reset(struct net_device *dev, int really_reset)
{
	struct arcnet_local *lp = netdev_priv(dev);
	short ioaddr = dev->base_addr;