sh_eth: kill redundant check in the probe() method

Browsing thru the driver disassembly, I noticed that gcc was  able to
figure  out  that the 'ndev' pointer is always non-NULL when calling
free_netdev()  on the probe() method's  error path and  thus skip that
redundant NULL check... gcc is smart, be like gcc! :-)

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Sergei Shtylyov 2017-12-31 21:41:36 +03:00 committed by David S. Miller
parent 5d0c100c22
commit 4282fc47c0
1 changed files with 1 additions and 2 deletions

View File

@ -3282,8 +3282,7 @@ out_napi_del:
out_release:
/* net_dev free */
if (ndev)
free_netdev(ndev);
free_netdev(ndev);
pm_runtime_put(&pdev->dev);
pm_runtime_disable(&pdev->dev);