1
0
Fork 0

netlink: Delete an unnecessary check before the function call "module_put"

The module_put() function tests whether its argument is NULL and then
returns immediately. Thus the test around the call is not needed.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Markus Elfring 2015-07-02 18:38:12 +02:00 committed by David S. Miller
parent f6e1c91666
commit 92b80eb33c
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ static int __netlink_remove_tap(struct netlink_tap *nt)
out:
spin_unlock(&netlink_tap_lock);
if (found && nt->module)
if (found)
module_put(nt->module);
return found ? 0 : -ENODEV;