net: hinic: change type of function to be static
Functions are called only in one file, change their type to static. Signed-off-by: Zhengchao Shao <shaozhengchao@huawei.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
15b209cde2
commit
73f25f16cc
@ -509,8 +509,8 @@ int hinic_cmdq_direct_resp(struct hinic_cmdqs *cmdqs,
|
||||
*
|
||||
* Return 0 - Success, negative - Failure
|
||||
**/
|
||||
int hinic_set_arm_bit(struct hinic_cmdqs *cmdqs,
|
||||
enum hinic_set_arm_qtype q_type, u32 q_id)
|
||||
static int hinic_set_arm_bit(struct hinic_cmdqs *cmdqs,
|
||||
enum hinic_set_arm_qtype q_type, u32 q_id)
|
||||
{
|
||||
struct hinic_cmdq *cmdq = &cmdqs->cmdq[HINIC_CMDQ_SYNC];
|
||||
struct hinic_hwif *hwif = cmdqs->hwif;
|
||||
|
@ -177,9 +177,6 @@ int hinic_cmdq_direct_resp(struct hinic_cmdqs *cmdqs,
|
||||
enum hinic_mod_type mod, u8 cmd,
|
||||
struct hinic_cmdq_buf *buf_in, u64 *out_param);
|
||||
|
||||
int hinic_set_arm_bit(struct hinic_cmdqs *cmdqs,
|
||||
enum hinic_set_arm_qtype q_type, u32 q_id);
|
||||
|
||||
int hinic_init_cmdqs(struct hinic_cmdqs *cmdqs, struct hinic_hwif *hwif,
|
||||
void __iomem **db_area);
|
||||
|
||||
|
@ -837,8 +837,8 @@ static int hinic_l2nic_reset(struct hinic_hwdev *hwdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int hinic_get_interrupt_cfg(struct hinic_hwdev *hwdev,
|
||||
struct hinic_msix_config *interrupt_info)
|
||||
static int hinic_get_interrupt_cfg(struct hinic_hwdev *hwdev,
|
||||
struct hinic_msix_config *interrupt_info)
|
||||
{
|
||||
u16 out_size = sizeof(*interrupt_info);
|
||||
struct hinic_pfhwdev *pfhwdev;
|
||||
|
@ -587,9 +587,6 @@ int hinic_hwdev_hw_ci_addr_set(struct hinic_hwdev *hwdev, struct hinic_sq *sq,
|
||||
void hinic_hwdev_set_msix_state(struct hinic_hwdev *hwdev, u16 msix_index,
|
||||
enum hinic_msix_state flag);
|
||||
|
||||
int hinic_get_interrupt_cfg(struct hinic_hwdev *hwdev,
|
||||
struct hinic_msix_config *interrupt_info);
|
||||
|
||||
int hinic_set_interrupt_cfg(struct hinic_hwdev *hwdev,
|
||||
struct hinic_msix_config *interrupt_info);
|
||||
|
||||
|
@ -621,7 +621,7 @@ static bool check_vf_mbox_random_id(struct hinic_mbox_func_to_func *func_to_func
|
||||
return false;
|
||||
}
|
||||
|
||||
void hinic_mbox_func_aeqe_handler(void *handle, void *header, u8 size)
|
||||
static void hinic_mbox_func_aeqe_handler(void *handle, void *header, u8 size)
|
||||
{
|
||||
struct hinic_mbox_func_to_func *func_to_func;
|
||||
u64 mbox_header = *((u64 *)header);
|
||||
@ -649,7 +649,7 @@ void hinic_mbox_func_aeqe_handler(void *handle, void *header, u8 size)
|
||||
recv_mbox_handler(func_to_func, (u64 *)header, recv_mbox);
|
||||
}
|
||||
|
||||
void hinic_mbox_self_aeqe_handler(void *handle, void *header, u8 size)
|
||||
static void hinic_mbox_self_aeqe_handler(void *handle, void *header, u8 size)
|
||||
{
|
||||
struct hinic_mbox_func_to_func *func_to_func;
|
||||
struct hinic_send_mbox *send_mbox;
|
||||
|
@ -150,10 +150,6 @@ void hinic_unregister_pf_mbox_cb(struct hinic_hwdev *hwdev,
|
||||
void hinic_unregister_vf_mbox_cb(struct hinic_hwdev *hwdev,
|
||||
enum hinic_mod_type mod);
|
||||
|
||||
void hinic_mbox_func_aeqe_handler(void *handle, void *header, u8 size);
|
||||
|
||||
void hinic_mbox_self_aeqe_handler(void *handle, void *header, u8 size);
|
||||
|
||||
int hinic_func_to_func_init(struct hinic_hwdev *hwdev);
|
||||
|
||||
void hinic_func_to_func_free(struct hinic_hwdev *hwdev);
|
||||
|
@ -50,7 +50,7 @@
|
||||
* hinic_rxq_clean_stats - Clean the statistics of specific queue
|
||||
* @rxq: Logical Rx Queue
|
||||
**/
|
||||
void hinic_rxq_clean_stats(struct hinic_rxq *rxq)
|
||||
static void hinic_rxq_clean_stats(struct hinic_rxq *rxq)
|
||||
{
|
||||
struct hinic_rxq_stats *rxq_stats = &rxq->rxq_stats;
|
||||
|
||||
|
@ -41,8 +41,6 @@ struct hinic_rxq {
|
||||
struct napi_struct napi;
|
||||
};
|
||||
|
||||
void hinic_rxq_clean_stats(struct hinic_rxq *rxq);
|
||||
|
||||
void hinic_rxq_get_stats(struct hinic_rxq *rxq, struct hinic_rxq_stats *stats);
|
||||
|
||||
int hinic_init_rxq(struct hinic_rxq *rxq, struct hinic_rq *rq,
|
||||
|
@ -1293,7 +1293,7 @@ int hinic_pci_sriov_disable(struct pci_dev *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int hinic_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
|
||||
static int hinic_pci_sriov_enable(struct pci_dev *pdev, int num_vfs)
|
||||
{
|
||||
struct hinic_sriov_info *sriov_info;
|
||||
int err;
|
||||
|
@ -98,8 +98,6 @@ void hinic_notify_all_vfs_link_changed(struct hinic_hwdev *hwdev,
|
||||
|
||||
int hinic_pci_sriov_disable(struct pci_dev *dev);
|
||||
|
||||
int hinic_pci_sriov_enable(struct pci_dev *dev, int num_vfs);
|
||||
|
||||
int hinic_vf_func_init(struct hinic_hwdev *hwdev);
|
||||
|
||||
void hinic_vf_func_free(struct hinic_hwdev *hwdev);
|
||||
|
@ -74,7 +74,7 @@ enum hinic_offload_type {
|
||||
* hinic_txq_clean_stats - Clean the statistics of specific queue
|
||||
* @txq: Logical Tx Queue
|
||||
**/
|
||||
void hinic_txq_clean_stats(struct hinic_txq *txq)
|
||||
static void hinic_txq_clean_stats(struct hinic_txq *txq)
|
||||
{
|
||||
struct hinic_txq_stats *txq_stats = &txq->txq_stats;
|
||||
|
||||
|
@ -40,8 +40,6 @@ struct hinic_txq {
|
||||
struct napi_struct napi;
|
||||
};
|
||||
|
||||
void hinic_txq_clean_stats(struct hinic_txq *txq);
|
||||
|
||||
void hinic_txq_get_stats(struct hinic_txq *txq, struct hinic_txq_stats *stats);
|
||||
|
||||
netdev_tx_t hinic_lb_xmit_frame(struct sk_buff *skb, struct net_device *netdev);
|
||||
|
Loading…
x
Reference in New Issue
Block a user