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>
        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;
        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)
 
                        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:
 
        return err;
 
-err_reg_dev:
-       if (boot)
-               mlx5_devlink_unregister(priv_to_devlink(dev));
 err_devlink_reg:
        mlx5_unload(dev);
 err_load:
 
 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);