Skip to content

Commit

Permalink
NFC: netlink: Use error code from nfc_activate_target()
Browse files Browse the repository at this point in the history
It looks like a typo to assign a return code to a variable which is not
used. Found due to a compiler warning:

net/nfc/netlink.c: In function ‘nfc_genl_activate_target’:
net/nfc/netlink.c:903:6: warning: variable ‘rc’ set but not used [-Wunused-but-set-variable]
  int rc;
        ^~

Signed-off-by: Andy Shevchenko <[email protected]>
Signed-off-by: Samuel Ortiz <[email protected]>
  • Loading branch information
andy-shev authored and Samuel Ortiz committed Apr 5, 2017
1 parent 682fd61 commit 3267183
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/nfc/netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ static int nfc_genl_activate_target(struct sk_buff *skb, struct genl_info *info)
rc = nfc_activate_target(dev, target_idx, protocol);

nfc_put_device(dev);
return 0;
return rc;
}

static int nfc_genl_dep_link_up(struct sk_buff *skb, struct genl_info *info)
Expand Down

0 comments on commit 3267183

Please sign in to comment.