From: Bartosz Golaszewski <[email protected]>

While not destroying mutexes doesn't lead to memory leaks, it's still
the correct thing to do for mutex debugging accounting.

Signed-off-by: Bartosz Golaszewski <[email protected]>
---
 drivers/base/regmap/regmap.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index b71f9ecddff5..5ecd7a57700d 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -1365,6 +1365,8 @@ void regmap_exit(struct regmap *map)
        }
        if (map->hwlock)
                hwspin_lock_free(map->hwlock);
+       if (map->lock == regmap_lock_mutex)
+               mutex_destroy(&map->mutex);
        kfree_const(map->name);
        kfree(map->patch);
        kfree(map);
-- 
2.26.1

Reply via email to