diff mbox series

[2/2] regmap: Clean up hwspinlock on regmap exit

Message ID 20171103200851.10215-2-broonie@kernel.org
State Accepted
Commit e8419c40a5ad58eaa112173f554148accc6794f3
Headers show
Series [1/2] regmap: Also protect hwspinlock in error handling path | expand

Commit Message

Mark Brown Nov. 3, 2017, 8:08 p.m. UTC
We should free any hwspinlocks when we destroy the regmap, do so.

Signed-off-by: Mark Brown <broonie@kernel.org>

---
 drivers/base/regmap/regmap.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.15.0
diff mbox series

Patch

diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index 5ff549fa880b..bfe2f250d011 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -1305,6 +1305,8 @@  void regmap_exit(struct regmap *map)
 		kfree(async->work_buf);
 		kfree(async);
 	}
+	if (IS_ENABLED(REGMAP_HWSPINLOCK) && map->hwlock)
+		hwspin_lock_free(map->hwlock);
 	kfree(map);
 }
 EXPORT_SYMBOL_GPL(regmap_exit);