drivers/net/wireless/ipw2x00: fix sparse warnings: make symbols static
Fix this sparse warnings: drivers/net/wireless/ipw2x00/ipw2100.c:5271:6: warning: symbol 'ipw2100_queues_initialize' was not declared. Should it be static? drivers/net/wireless/ipw2x00/ipw2100.c:5278:6: warning: symbol 'ipw2100_queues_free' was not declared. Should it be static? drivers/net/wireless/ipw2x00/ipw2100.c:5285:5: warning: symbol 'ipw2100_queues_allocate' was not declared. Should it be static? Signed-off-by: Hannes Eder <hannes@hanneseder.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
11ab72a7c9
commit
a3d1fd23e1
@@ -5268,21 +5268,21 @@ static int ipw2100_set_ibss_beacon_interval(struct ipw2100_priv *priv,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ipw2100_queues_initialize(struct ipw2100_priv *priv)
|
static void ipw2100_queues_initialize(struct ipw2100_priv *priv)
|
||||||
{
|
{
|
||||||
ipw2100_tx_initialize(priv);
|
ipw2100_tx_initialize(priv);
|
||||||
ipw2100_rx_initialize(priv);
|
ipw2100_rx_initialize(priv);
|
||||||
ipw2100_msg_initialize(priv);
|
ipw2100_msg_initialize(priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ipw2100_queues_free(struct ipw2100_priv *priv)
|
static void ipw2100_queues_free(struct ipw2100_priv *priv)
|
||||||
{
|
{
|
||||||
ipw2100_tx_free(priv);
|
ipw2100_tx_free(priv);
|
||||||
ipw2100_rx_free(priv);
|
ipw2100_rx_free(priv);
|
||||||
ipw2100_msg_free(priv);
|
ipw2100_msg_free(priv);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ipw2100_queues_allocate(struct ipw2100_priv *priv)
|
static int ipw2100_queues_allocate(struct ipw2100_priv *priv)
|
||||||
{
|
{
|
||||||
if (ipw2100_tx_allocate(priv) ||
|
if (ipw2100_tx_allocate(priv) ||
|
||||||
ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
|
ipw2100_rx_allocate(priv) || ipw2100_msg_allocate(priv))
|
||||||
|
Reference in New Issue
Block a user