Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b4709ec authored by Wolfram Sang's avatar Wolfram Sang Committed by Liam Girdwood
Browse files

regulator: fix dangling pointers



Fix I2C-drivers which missed setting clientdata to NULL before freeing the
structure it points to. Also fix drivers which do this _after_ the structure
was freed already.

Signed-off-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Cc: Liam Girdwood <lrg@slimlogic.co.uk>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent 451a73cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -243,8 +243,8 @@ static int __devexit max1586_pmic_remove(struct i2c_client *client)
	for (i = 0; i <= MAX1586_V6; i++)
		if (rdev[i])
			regulator_unregister(rdev[i]);
	kfree(rdev);
	i2c_set_clientdata(client, NULL);
	kfree(rdev);

	return 0;
}
+2 −1
Original line number Diff line number Diff line
@@ -356,6 +356,7 @@ static int __devinit max8649_regulator_probe(struct i2c_client *client,
	dev_info(info->dev, "Max8649 regulator device is detected.\n");
	return 0;
out:
	i2c_set_clientdata(client, NULL);
	kfree(info);
	return ret;
}
@@ -367,9 +368,9 @@ static int __devexit max8649_regulator_remove(struct i2c_client *client)
	if (info) {
		if (info->regulator)
			regulator_unregister(info->regulator);
		i2c_set_clientdata(client, NULL);
		kfree(info);
	}
	i2c_set_clientdata(client, NULL);

	return 0;
}
+1 −1
Original line number Diff line number Diff line
@@ -470,8 +470,8 @@ static int __devexit max8660_remove(struct i2c_client *client)
	for (i = 0; i < MAX8660_V_END; i++)
		if (rdev[i])
			regulator_unregister(rdev[i]);
	kfree(rdev);
	i2c_set_clientdata(client, NULL);
	kfree(rdev);

	return 0;
}