Thomas Meyer <[email protected]> writes:

> NULL check before some freeing functions is not needed.
>
> Signed-off-by: Thomas Meyer <[email protected]>

Reviewed-by: Kevin Hilman <[email protected]>

> ---
>
> diff -u -p a/drivers/power/avs/smartreflex.c b/drivers/power/avs/smartreflex.c
> --- a/drivers/power/avs/smartreflex.c
> +++ b/drivers/power/avs/smartreflex.c
> @@ -1010,8 +1010,7 @@ static int omap_sr_remove(struct platfor
>  
>       if (sr_info->autocomp_active)
>               sr_stop_vddautocomp(sr_info);
> -     if (sr_info->dbg_dir)
> -             debugfs_remove_recursive(sr_info->dbg_dir);
> +     debugfs_remove_recursive(sr_info->dbg_dir);
>  
>       pm_runtime_disable(&pdev->dev);
>       list_del(&sr_info->node);

Reply via email to