|
@@ -70,8 +70,8 @@ static struct ring_pair_cb *hns_ae_get_ring_pair(struct hnae_queue *q)
|
|
|
return container_of(q, struct ring_pair_cb, q);
|
|
|
}
|
|
|
|
|
|
-struct hnae_handle *hns_ae_get_handle(struct hnae_ae_dev *dev,
|
|
|
- u32 port_id)
|
|
|
+static struct hnae_handle *hns_ae_get_handle(struct hnae_ae_dev *dev,
|
|
|
+ u32 port_id)
|
|
|
{
|
|
|
int vfnum_per_port;
|
|
|
int qnum_per_vf;
|
|
@@ -329,7 +329,7 @@ static int hns_ae_start(struct hnae_handle *handle)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-void hns_ae_stop(struct hnae_handle *handle)
|
|
|
+static void hns_ae_stop(struct hnae_handle *handle)
|
|
|
{
|
|
|
struct hns_mac_cb *mac_cb = hns_get_mac_cb(handle);
|
|
|
|
|
@@ -357,7 +357,7 @@ static void hns_ae_reset(struct hnae_handle *handle)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void hns_ae_toggle_ring_irq(struct hnae_ring *ring, u32 mask)
|
|
|
+static void hns_ae_toggle_ring_irq(struct hnae_ring *ring, u32 mask)
|
|
|
{
|
|
|
u32 flag;
|
|
|
|
|
@@ -577,8 +577,8 @@ static void hns_ae_get_coalesce_range(struct hnae_handle *handle,
|
|
|
*rx_usecs_high = HNS_RCB_RX_USECS_HIGH;
|
|
|
}
|
|
|
|
|
|
-void hns_ae_update_stats(struct hnae_handle *handle,
|
|
|
- struct net_device_stats *net_stats)
|
|
|
+static void hns_ae_update_stats(struct hnae_handle *handle,
|
|
|
+ struct net_device_stats *net_stats)
|
|
|
{
|
|
|
int port;
|
|
|
int idx;
|
|
@@ -660,7 +660,7 @@ void hns_ae_update_stats(struct hnae_handle *handle,
|
|
|
net_stats->multicast = mac_cb->hw_stats.rx_mc_pkts;
|
|
|
}
|
|
|
|
|
|
-void hns_ae_get_stats(struct hnae_handle *handle, u64 *data)
|
|
|
+static void hns_ae_get_stats(struct hnae_handle *handle, u64 *data)
|
|
|
{
|
|
|
int idx;
|
|
|
struct hns_mac_cb *mac_cb;
|
|
@@ -692,8 +692,8 @@ void hns_ae_get_stats(struct hnae_handle *handle, u64 *data)
|
|
|
hns_dsaf_get_stats(vf_cb->dsaf_dev, p, vf_cb->port_index);
|
|
|
}
|
|
|
|
|
|
-void hns_ae_get_strings(struct hnae_handle *handle,
|
|
|
- u32 stringset, u8 *data)
|
|
|
+static void hns_ae_get_strings(struct hnae_handle *handle,
|
|
|
+ u32 stringset, u8 *data)
|
|
|
{
|
|
|
int port;
|
|
|
int idx;
|
|
@@ -725,7 +725,7 @@ void hns_ae_get_strings(struct hnae_handle *handle,
|
|
|
hns_dsaf_get_strings(stringset, p, port, dsaf_dev);
|
|
|
}
|
|
|
|
|
|
-int hns_ae_get_sset_count(struct hnae_handle *handle, int stringset)
|
|
|
+static int hns_ae_get_sset_count(struct hnae_handle *handle, int stringset)
|
|
|
{
|
|
|
u32 sset_count = 0;
|
|
|
struct hns_mac_cb *mac_cb;
|
|
@@ -771,7 +771,7 @@ static int hns_ae_config_loopback(struct hnae_handle *handle,
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-void hns_ae_update_led_status(struct hnae_handle *handle)
|
|
|
+static void hns_ae_update_led_status(struct hnae_handle *handle)
|
|
|
{
|
|
|
struct hns_mac_cb *mac_cb;
|
|
|
|
|
@@ -783,8 +783,8 @@ void hns_ae_update_led_status(struct hnae_handle *handle)
|
|
|
hns_set_led_opt(mac_cb);
|
|
|
}
|
|
|
|
|
|
-int hns_ae_cpld_set_led_id(struct hnae_handle *handle,
|
|
|
- enum hnae_led_state status)
|
|
|
+static int hns_ae_cpld_set_led_id(struct hnae_handle *handle,
|
|
|
+ enum hnae_led_state status)
|
|
|
{
|
|
|
struct hns_mac_cb *mac_cb;
|
|
|
|
|
@@ -795,7 +795,7 @@ int hns_ae_cpld_set_led_id(struct hnae_handle *handle,
|
|
|
return hns_cpld_led_set_id(mac_cb, status);
|
|
|
}
|
|
|
|
|
|
-void hns_ae_get_regs(struct hnae_handle *handle, void *data)
|
|
|
+static void hns_ae_get_regs(struct hnae_handle *handle, void *data)
|
|
|
{
|
|
|
u32 *p = data;
|
|
|
int i;
|
|
@@ -820,7 +820,7 @@ void hns_ae_get_regs(struct hnae_handle *handle, void *data)
|
|
|
hns_dsaf_get_regs(vf_cb->dsaf_dev, vf_cb->port_index, p);
|
|
|
}
|
|
|
|
|
|
-int hns_ae_get_regs_len(struct hnae_handle *handle)
|
|
|
+static int hns_ae_get_regs_len(struct hnae_handle *handle)
|
|
|
{
|
|
|
u32 total_num;
|
|
|
struct hnae_vf_cb *vf_cb = hns_ae_get_vf_cb(handle);
|