[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200607051241.5375-1-xianfengting221@163.com>
Date: Sun, 7 Jun 2020 13:12:40 +0800
From: Hu Haowen <xianfengting221@....com>
To: saeedm@...lanox.com, leon@...nel.org, davem@...emloft.net,
kuba@...nel.org
Cc: netdev@...r.kernel.org, linux-rdma@...r.kernel.org,
linux-kernel@...r.kernel.org, Hu Haowen <xianfengting221@....com>
Subject: [PATCH] net/mlx5: Add a missing macro undefinition
The macro ODP_CAP_SET_MAX is only used in function handle_hca_cap_odp()
in file main.c, so it should be undefined when there are no more uses
of it.
Signed-off-by: Hu Haowen <xianfengting221@....com>
---
drivers/net/ethernet/mellanox/mlx5/core/main.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/main.c b/drivers/net/ethernet/mellanox/mlx5/core/main.c
index df46b1fce3a7..1143297eccaa 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/main.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/main.c
@@ -489,6 +489,8 @@ static int handle_hca_cap_odp(struct mlx5_core_dev *dev, void *set_ctx)
ODP_CAP_SET_MAX(dev, dc_odp_caps.read);
ODP_CAP_SET_MAX(dev, dc_odp_caps.atomic);
+#undef ODP_CAP_SET_MAX
+
if (!do_set)
return 0;
--
2.25.1
Powered by blists - more mailing lists