Commit 6af0a52f authored by Maor Gottlieb's avatar Maor Gottlieb Committed by David S. Miller

net/mlx4: mlx4_config_dev_retrieval() - Initialize struct config_dev before using

Add Initialization to struct config_dev before filling and using it.
Fix to warning:

warning: config_dev.rx_checksum_val may be used uninitialized in this function
Signed-off-by: default avatarMaor Gottlieb <maorg@mellanox.com>
Signed-off-by: default avatarAmir Vadai <amirv@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b332068c
...@@ -2169,7 +2169,7 @@ static const u8 config_dev_csum_flags[] = { ...@@ -2169,7 +2169,7 @@ static const u8 config_dev_csum_flags[] = {
int mlx4_config_dev_retrieval(struct mlx4_dev *dev, int mlx4_config_dev_retrieval(struct mlx4_dev *dev,
struct mlx4_config_dev_params *params) struct mlx4_config_dev_params *params)
{ {
struct mlx4_config_dev config_dev; struct mlx4_config_dev config_dev = {0};
int err; int err;
u8 csum_mask; u8 csum_mask;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment