Commit 2ed5ba89 authored by Hannes Eder's avatar Hannes Eder Committed by David S. Miller

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

Fix this sparse warnings:

  drivers/net/wireless/airo.c:3610:6: warning: symbol 'mpi_receive_802_11' was not declared. Should it be static?
  drivers/net/wireless/atmel.c:3183:6: warning: symbol 'atmel_join_bss' was not declared. Should it be static?
  drivers/net/wireless/ray_cs.c:831:5: warning: symbol 'ray_dev_init' 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 62c5345d
...@@ -3607,7 +3607,7 @@ static void mpi_receive_802_3(struct airo_info *ai) ...@@ -3607,7 +3607,7 @@ static void mpi_receive_802_3(struct airo_info *ai)
} }
} }
void mpi_receive_802_11 (struct airo_info *ai) static void mpi_receive_802_11(struct airo_info *ai)
{ {
RxFid rxd; RxFid rxd;
struct sk_buff *skb = NULL; struct sk_buff *skb = NULL;
......
...@@ -3180,7 +3180,7 @@ static void associate(struct atmel_private *priv, u16 frame_len, u16 subtype) ...@@ -3180,7 +3180,7 @@ static void associate(struct atmel_private *priv, u16 frame_len, u16 subtype)
} }
} }
void atmel_join_bss(struct atmel_private *priv, int bss_index) static void atmel_join_bss(struct atmel_private *priv, int bss_index)
{ {
struct bss_info *bss = &priv->BSSinfo[bss_index]; struct bss_info *bss = &priv->BSSinfo[bss_index];
......
...@@ -828,7 +828,7 @@ static int ray_resume(struct pcmcia_device *link) ...@@ -828,7 +828,7 @@ static int ray_resume(struct pcmcia_device *link)
} }
/*===========================================================================*/ /*===========================================================================*/
int ray_dev_init(struct net_device *dev) static int ray_dev_init(struct net_device *dev)
{ {
#ifdef RAY_IMMEDIATE_INIT #ifdef RAY_IMMEDIATE_INIT
int i; int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment