Message ID | 20220407070703.2421076-1-idosch@nvidia.com (mailing list archive) |
---|---|
State | Accepted |
Commit | d452088cdfd5a4ad9d96d847d2273fe958d6339b |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] mlxsw: i2c: Fix initialization error flow | expand |
Hello: This patch was applied to netdev/net.git (master) by Jakub Kicinski <kuba@kernel.org>: On Thu, 7 Apr 2022 10:07:03 +0300 you wrote: > From: Vadim Pasternak <vadimp@nvidia.com> > > Add mutex_destroy() call in driver initialization error flow. > > Fixes: 6882b0aee180f ("mlxsw: Introduce support for I2C bus") > Signed-off-by: Vadim Pasternak <vadimp@nvidia.com> > Signed-off-by: Ido Schimmel <idosch@nvidia.com> > > [...] Here is the summary with links: - [net] mlxsw: i2c: Fix initialization error flow https://git.kernel.org/netdev/net/c/d452088cdfd5 You are awesome, thank you!
diff --git a/drivers/net/ethernet/mellanox/mlxsw/i2c.c b/drivers/net/ethernet/mellanox/mlxsw/i2c.c index 939b692ffc33..ce843ea91464 100644 --- a/drivers/net/ethernet/mellanox/mlxsw/i2c.c +++ b/drivers/net/ethernet/mellanox/mlxsw/i2c.c @@ -650,6 +650,7 @@ static int mlxsw_i2c_probe(struct i2c_client *client, return 0; errout: + mutex_destroy(&mlxsw_i2c->cmd.lock); i2c_set_clientdata(client, NULL); return err;