Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9fc79b6 authored by Huazhong Tan's avatar Huazhong Tan Committed by David S. Miller
Browse files

net: hns3: remove some unused members of some structures



Some members in struct hns3_enet_tqp_vector, struct hnae3_client
and struct hnae3_ae_algo are unused.
This patch removes them.

Signed-off-by: default avatarHuazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f6762f38
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -167,7 +167,6 @@ struct hnae3_client_ops {
#define HNAE3_CLIENT_NAME_LENGTH 16
struct hnae3_client {
	char name[HNAE3_CLIENT_NAME_LENGTH];
	u16 version;
	unsigned long state;
	enum hnae3_client_type type;
	const struct hnae3_client_ops *ops;
@@ -436,7 +435,6 @@ struct hnae3_dcb_ops {
struct hnae3_ae_algo {
	const struct hnae3_ae_ops *ops;
	struct list_head node;
	char name[HNAE3_CLASS_NAME_SIZE];
	const struct pci_device_id *pdev_id_table;
};

+0 −1
Original line number Diff line number Diff line
@@ -499,7 +499,6 @@ struct hns3_enet_tqp_vector {

	u16 num_tqps;	/* total number of tqps in TQP vector */

	cpumask_t affinity_mask;
	char name[HNAE3_INT_NAME_LEN];

	/* when 0 should adjust interrupt coalesce parameter */
+0 −1
Original line number Diff line number Diff line
@@ -6287,7 +6287,6 @@ static const struct hnae3_ae_ops hclge_ops = {

static struct hnae3_ae_algo ae_algo = {
	.ops = &hclge_ops,
	.name = HCLGE_NAME,
	.pdev_id_table = ae_algo_pci_tbl,
};

+0 −1
Original line number Diff line number Diff line
@@ -1959,7 +1959,6 @@ static const struct hnae3_ae_ops hclgevf_ops = {

static struct hnae3_ae_algo ae_algovf = {
	.ops = &hclgevf_ops,
	.name = HCLGEVF_NAME,
	.pdev_id_table = ae_algovf_pci_tbl,
};