diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2013-12-20 13:35:07 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-06 23:22:18 +0400 |
commit | 62350c32e91d3b074a515b3b90b0fe6e09c20384 (patch) | |
tree | cb7827d894eab5802617fed36b4feb066f0a30b7 | |
parent | 26991248a1e553068c935036947ae2d66d452fb5 (diff) | |
download | linux-62350c32e91d3b074a515b3b90b0fe6e09c20384.tar.xz |
mfd: max77686: Fix regmap resource leak on driver remove
commit 74142ffc0b52cfe6f9d2f6f34a5f3eedbfe3ce51 upstream.
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.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/mfd/max77686.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max77686.c b/drivers/mfd/max77686.c index 522be67b2e68..108453b75ccc 100644 --- a/drivers/mfd/max77686.c +++ b/drivers/mfd/max77686.c @@ -103,7 +103,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", |