mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 11:12:01 -04:00
net: hns: remove unused set_autoneg()
Since set_autoneg() in struct hnae_ae_ops is unused, so remove it. Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
e7eae3ad19
commit
72b06363f1
@@ -414,8 +414,6 @@ enum hnae_media_type {
|
||||
* get ring bd number limit
|
||||
* get_pauseparam()
|
||||
* get tx and rx of pause frame use
|
||||
* set_autoneg()
|
||||
* set auto autonegotiation of pause frame use
|
||||
* set_pauseparam()
|
||||
* set tx and rx of pause frame use
|
||||
* get_coalesce_usecs()
|
||||
@@ -485,7 +483,6 @@ struct hnae_ae_ops {
|
||||
u32 *uplimit);
|
||||
void (*get_pauseparam)(struct hnae_handle *handle,
|
||||
u32 *auto_neg, u32 *rx_en, u32 *tx_en);
|
||||
int (*set_autoneg)(struct hnae_handle *handle, u8 enable);
|
||||
int (*set_pauseparam)(struct hnae_handle *handle,
|
||||
u32 auto_neg, u32 rx_en, u32 tx_en);
|
||||
void (*get_coalesce_usecs)(struct hnae_handle *handle,
|
||||
|
||||
@@ -487,13 +487,6 @@ static void hns_ae_get_pauseparam(struct hnae_handle *handle,
|
||||
hns_dsaf_get_rx_mac_pause_en(dsaf_dev, mac_cb->mac_id, rx_en);
|
||||
}
|
||||
|
||||
static int hns_ae_set_autoneg(struct hnae_handle *handle, u8 enable)
|
||||
{
|
||||
assert(handle);
|
||||
|
||||
return hns_mac_set_autoneg(hns_get_mac_cb(handle), enable);
|
||||
}
|
||||
|
||||
static void hns_ae_set_promisc_mode(struct hnae_handle *handle, u32 en)
|
||||
{
|
||||
struct hns_mac_cb *mac_cb = hns_get_mac_cb(handle);
|
||||
@@ -954,7 +947,6 @@ static struct hnae_ae_ops hns_dsaf_ops = {
|
||||
.set_loopback = hns_ae_config_loopback,
|
||||
.get_ring_bdnum_limit = hns_ae_get_ring_bdnum_limit,
|
||||
.get_pauseparam = hns_ae_get_pauseparam,
|
||||
.set_autoneg = hns_ae_set_autoneg,
|
||||
.set_pauseparam = hns_ae_set_pauseparam,
|
||||
.get_coalesce_usecs = hns_ae_get_coalesce_usecs,
|
||||
.get_max_coalesced_frames = hns_ae_get_max_coalesced_frames,
|
||||
|
||||
Reference in New Issue
Block a user