regmap: Don't lock in regmap_reinit_cache()
authorDimitris Papastamos <dp@opensource.wolfsonmicro.com>
Fri, 27 Jul 2012 13:54:15 +0000 (14:54 +0100)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sat, 4 Aug 2012 10:07:57 +0000 (11:07 +0100)
commit4d879514e73f3e6b27617d9898c83c9939462dda
tree06bf8f994fb2ccefb68fa8aba07897c7d87fdc47
parent0d7614f09c1ebdbaa1599a5aba7593f147bf96ee
regmap: Don't lock in regmap_reinit_cache()

When bus->fast_io is set, the locking here is done with spinlocks.
This is currently true for the regmap-mmio bus implementation.

While holding a spinlock we can't go to sleep, various operations
like removing the debugfs entries or re-initializing the cache will
sleep, therefore, shift the locking up to the user.

Signed-off-by: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/base/regmap/regmap.c