mirror of https://gitee.com/openkylin/linux.git
net/benet: Make lancer_wait_ready() static
The function needn't to be public, so to make it as static. Signed-off-by: Gavin Shan <shangw@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
547e2daeba
commit
87f20c26f9
|
@ -522,7 +522,7 @@ static u16 be_POST_stage_get(struct be_adapter *adapter)
|
|||
return sem & POST_STAGE_MASK;
|
||||
}
|
||||
|
||||
int lancer_wait_ready(struct be_adapter *adapter)
|
||||
static int lancer_wait_ready(struct be_adapter *adapter)
|
||||
{
|
||||
#define SLIPORT_READY_TIMEOUT 30
|
||||
u32 sliport_status;
|
||||
|
|
|
@ -2053,7 +2053,6 @@ int be_cmd_get_ext_fat_capabilites(struct be_adapter *adapter,
|
|||
int be_cmd_set_ext_fat_capabilites(struct be_adapter *adapter,
|
||||
struct be_dma_mem *cmd,
|
||||
struct be_fat_conf_params *cfgs);
|
||||
int lancer_wait_ready(struct be_adapter *adapter);
|
||||
int lancer_physdev_ctrl(struct be_adapter *adapter, u32 mask);
|
||||
int lancer_initiate_dump(struct be_adapter *adapter);
|
||||
bool dump_present(struct be_adapter *adapter);
|
||||
|
|
Loading…
Reference in New Issue