From: Stephen Hemminger Date: Wed, 29 May 2019 19:15:01 +0000 (-0700) Subject: net/mlx5: remove unnecessary cast X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=d812a3c21edaa48c6d5d43aa6d1ce95bd972f3fe;p=dpdk.git net/mlx5: remove unnecessary cast The device private pointer (dev_private) is of type void * therefore no cast is necessary in C. Cc: stable@dpdk.org Signed-off-by: Stephen Hemminger Reviewed-by: Ferruh Yigit --- diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index 98870184d0..c03eb4c376 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -2156,7 +2156,7 @@ mlx5_flow_create(struct rte_eth_dev *dev, const struct rte_flow_action actions[], struct rte_flow_error *error) { - struct mlx5_priv *priv = (struct mlx5_priv *)dev->data->dev_private; + struct mlx5_priv *priv = dev->data->dev_private; return flow_list_create(dev, &priv->flows, attr, items, actions, error);