net: gemini: Fix another missing clk_disable_unprepare() in probe
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 2 Sep 2020 11:56:31 +0000 (14:56 +0300)
committerDavid S. Miller <davem@davemloft.net>
Wed, 2 Sep 2020 22:40:18 +0000 (15:40 -0700)
commiteb0f3bc463d59d86402f19c59aa44e82dc3fab6d
tree3c53f95691ab09dfee0bb8d071b9ecb9c66dbe13
parent1996cf46e4673a25ef2478eb266714f409a98221
net: gemini: Fix another missing clk_disable_unprepare() in probe

We recently added some calls to clk_disable_unprepare() but we missed
the last error path if register_netdev() fails.

I made a couple cleanups so we avoid mistakes like this in the future.
First I reversed the "if (!ret)" condition and pulled the code in one
indent level.  Also, the "port->netdev = NULL;" is not required because
"port" isn't used again outside this function so I deleted that line.

Fixes: 4d5ae32f5e1e ("net: ethernet: Add a driver for Gemini gigabit ethernet")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cortina/gemini.c