net/mlx5: Simplify mlx5_register_device to return void
authorParav Pandit <parav@mellanox.com>
Mon, 9 Mar 2020 03:19:51 +0000 (22:19 -0500)
committerSaeed Mahameed <saeedm@mellanox.com>
Thu, 26 Mar 2020 06:19:13 +0000 (23:19 -0700)
mlx5_register_device() doesn't check for any error and always returns 0.
Simplify mlx5_register_device() to return void and its caller, remove
dead code related to it.

Reviewed-by: Moshe Shemesh <moshe@mellanox.com>
Signed-off-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/dev.c
drivers/net/ethernet/mellanox/mlx5/core/main.c
drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.h

index 50862275544e52cd0610831694f8c415e1da8ed0..1972ddd127044132fd725bb60e2811f698466a62 100644 (file)
@@ -193,7 +193,7 @@ bool mlx5_device_registered(struct mlx5_core_dev *dev)
        return found;
 }
 
-int mlx5_register_device(struct mlx5_core_dev *dev)
+void mlx5_register_device(struct mlx5_core_dev *dev)
 {
        struct mlx5_priv *priv = &dev->priv;
        struct mlx5_interface *intf;
@@ -203,8 +203,6 @@ int mlx5_register_device(struct mlx5_core_dev *dev)
        list_for_each_entry(intf, &intf_list, list)
                mlx5_add_device(intf, priv);
        mutex_unlock(&mlx5_intf_mutex);
-
-       return 0;
 }
 
 void mlx5_unregister_device(struct mlx5_core_dev *dev)
index 204a26bf0a5fe870674cb2aca06f430d6316272b..dc58feb5a975a88729d60a9d757c7a955e6daf7b 100644 (file)
@@ -1211,15 +1211,10 @@ int mlx5_load_one(struct mlx5_core_dev *dev, bool boot)
                        goto err_devlink_reg;
        }
 
-       if (mlx5_device_registered(dev)) {
+       if (mlx5_device_registered(dev))
                mlx5_attach_device(dev);
-       } else {
-               err = mlx5_register_device(dev);
-               if (err) {
-                       mlx5_core_err(dev, "register device failed %d\n", err);
-                       goto err_reg_dev;
-               }
-       }
+       else
+               mlx5_register_device(dev);
 
        set_bit(MLX5_INTERFACE_STATE_UP, &dev->intf_state);
 out:
@@ -1227,9 +1222,6 @@ out:
 
        return err;
 
-err_reg_dev:
-       if (boot)
-               mlx5_devlink_unregister(priv_to_devlink(dev));
 err_devlink_reg:
        mlx5_unload(dev);
 err_load:
index da67b28d6e23e621bac2c014b26cf811274ed10f..8c12f1be27ce5cb232a9342c09b8c36276f99e7c 100644 (file)
@@ -182,7 +182,7 @@ void mlx5_remove_device(struct mlx5_interface *intf, struct mlx5_priv *priv);
 void mlx5_attach_device(struct mlx5_core_dev *dev);
 void mlx5_detach_device(struct mlx5_core_dev *dev);
 bool mlx5_device_registered(struct mlx5_core_dev *dev);
-int mlx5_register_device(struct mlx5_core_dev *dev);
+void mlx5_register_device(struct mlx5_core_dev *dev);
 void mlx5_unregister_device(struct mlx5_core_dev *dev);
 void mlx5_add_dev_by_protocol(struct mlx5_core_dev *dev, int protocol);
 void mlx5_remove_dev_by_protocol(struct mlx5_core_dev *dev, int protocol);