summaryrefslogtreecommitdiff
path: root/drivers/net/bonding
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2021-06-03 14:19:04 +0100
committerDavid S. Miller <davem@davemloft.net>2021-06-03 15:25:29 -0700
commit92e1b57c3865c508e0ecd9824b7a64256329b8fd (patch)
tree41c35a1e584e52208eefd8d2ea821ac68eb18e9c /drivers/net/bonding
parentfeb938fad63fb6fdd92ab082d0888ed5694af818 (diff)
bonding: remove redundant initialization of variable ret
The variable ret is being initialized with a value that is never read, it is being updated later on. The assignment is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r--drivers/net/bonding/bond_options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_options.c b/drivers/net/bonding/bond_options.c
index 81c039531e66..0cf25de6f46d 100644
--- a/drivers/net/bonding/bond_options.c
+++ b/drivers/net/bonding/bond_options.c
@@ -705,7 +705,7 @@ out:
int __bond_opt_set_notify(struct bonding *bond,
unsigned int option, struct bond_opt_value *val)
{
- int ret = -ENOENT;
+ int ret;
ASSERT_RTNL();