diff options
Diffstat (limited to 'drivers/platform/mellanox/mlxreg-lc.c')
| -rw-r--r-- | drivers/platform/mellanox/mlxreg-lc.c | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/drivers/platform/mellanox/mlxreg-lc.c b/drivers/platform/mellanox/mlxreg-lc.c index 8d833836a6d3..43d119e3a473 100644 --- a/drivers/platform/mellanox/mlxreg-lc.c +++ b/drivers/platform/mellanox/mlxreg-lc.c @@ -907,7 +907,7 @@ i2c_get_adapter_fail:  	return err;  } -static int mlxreg_lc_remove(struct platform_device *pdev) +static void mlxreg_lc_remove(struct platform_device *pdev)  {  	struct mlxreg_core_data *data = dev_get_platdata(&pdev->dev);  	struct mlxreg_lc *mlxreg_lc = platform_get_drvdata(pdev); @@ -921,7 +921,7 @@ static int mlxreg_lc_remove(struct platform_device *pdev)  	 * is nothing to remove.  	 */  	if (!data->notifier || !data->notifier->handle) -		return 0; +		return;  	/* Clear event notification callback and handle. */  	data->notifier->user_handler = NULL; @@ -940,13 +940,11 @@ static int mlxreg_lc_remove(struct platform_device *pdev)  		i2c_put_adapter(data->hpdev.adapter);  		data->hpdev.adapter = NULL;  	} - -	return 0;  }  static struct platform_driver mlxreg_lc_driver = {  	.probe = mlxreg_lc_probe, -	.remove = mlxreg_lc_remove, +	.remove_new = mlxreg_lc_remove,  	.driver = {  		.name = "mlxreg-lc",  	}, |