mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 19:05:39 +00:00
net: dsa: mv88e6xxx: missing unlock on error path
We added a new error path, but we need to drop the lock before we return. Fixes: 2d2e1dd29962 ("net: dsa: mv88e6xxx: Cache the port cmode") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f6f7a26abd
commit
e29129fcac
@ -2408,7 +2408,7 @@ static int mv88e6xxx_setup(struct dsa_switch *ds)
|
||||
if (chip->info->ops->port_get_cmode) {
|
||||
err = chip->info->ops->port_get_cmode(chip, i, &cmode);
|
||||
if (err)
|
||||
return err;
|
||||
goto unlock;
|
||||
|
||||
chip->ports[i].cmode = cmode;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user