be2net: fix sparse warning
this patch fixes following sparse warning: be_cmds.c:2750:5: warning: symbol 'be_cmd_set_qos' was not declared. Should it be static? Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4a95b6d0a7
commit
bc0ee16373
|
@ -2747,7 +2747,7 @@ int be_cmd_get_phy_info(struct be_adapter *adapter)
|
|||
return status;
|
||||
}
|
||||
|
||||
int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain)
|
||||
static int be_cmd_set_qos(struct be_adapter *adapter, u32 bps, u32 domain)
|
||||
{
|
||||
struct be_mcc_wrb *wrb;
|
||||
struct be_cmd_req_set_qos *req;
|
||||
|
|
Loading…
Reference in New Issue