summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/max77686.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2013-12-20 10:35:07 +0100
committerLee Jones <lee.jones@linaro.org>2014-01-21 08:28:13 +0000
commit74142ffc0b52cfe6f9d2f6f34a5f3eedbfe3ce51 (patch)
tree27de20c48b1c7babb9cb3891eaa1867c42ed7c99 /drivers/mfd/max77686.c
parentf876a975a05a2dffb4f1a4f07b81b212d9d8db01 (diff)
downloadlinux-0-day-74142ffc0b52cfe6f9d2f6f34a5f3eedbfe3ce51.tar.gz
linux-0-day-74142ffc0b52cfe6f9d2f6f34a5f3eedbfe3ce51.tar.xz
mfd: max77686: Fix regmap resource leak on driver remove
The regmap used by max77686 MFD driver was not freed with regmap_exit() on driver exit. This lead to leak of resources. Replace regmap_init_i2c() call in driver probe with initialization of managed register map so the regmap will be properly freed by the device management code. Cc: stable@vger.kernel.org Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/max77686.c')
-rw-r--r--drivers/mfd/max77686.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c
index fb0848544b768..f53d5823a3f73 100644
--- a/drivers/mfd/max77686.c
+++ b/drivers/mfd/max77686.c
@@ -104,7 +104,7 @@ static int max77686_i2c_probe(struct i2c_client *i2c,
max77686->irq_gpio = pdata->irq_gpio;
max77686->irq = i2c->irq;
- max77686->regmap = regmap_init_i2c(i2c, &max77686_regmap_config);
+ max77686->regmap = devm_regmap_init_i2c(i2c, &max77686_regmap_config);
if (IS_ERR(max77686->regmap)) {
ret = PTR_ERR(max77686->regmap);
dev_err(max77686->dev, "Failed to allocate register map: %d\n",