Files
linux/drivers
Arnd Bergmann 40e4c35358 UPSTREAM: regulator: core: avoid unused variable warning
The second argument of the mutex_lock_nested() helper is only
evaluated if CONFIG_DEBUG_LOCK_ALLOC is set. Otherwise we
get this build warning for the new regulator_lock_supply
function:

drivers/regulator/core.c: In function 'regulator_lock_supply':
drivers/regulator/core.c:142:6: warning: unused variable 'i' [-Wunused-variable]

To avoid the warning, this restructures the code to make it
both simpler and to move the 'i++' outside of the mutex_lock_nested
call, where it is now always used and the variable is not
flagged as unused.

We had some discussion about changing mutex_lock_nested to an
inline function, which would make the code do the right thing here,
but in the end decided against it, in order to guarantee that
mutex_lock_nested() does not introduced overhead without
CONFIG_DEBUG_LOCK_ALLOC.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 9f01cd4a91 ("regulator: core: introduce function to lock regulators and its supplies")
Link: http://permalink.gmane.org/gmane.linux.kernel/2068900
Signed-off-by: Mark Brown <broonie@kernel.org>
(cherry picked from commit fa731ac7ea04a7d3a5c6d2f568132478c02a83b3)

Change-Id: Id700f411f2bcbe0cd49be332f329cd1b03768868
2016-03-02 13:51:40 +08:00
..
2015-11-11 15:57:28 +08:00
2016-02-17 12:31:03 -08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2016-02-18 16:03:29 +08:00
2015-11-18 14:36:06 +08:00
2015-11-11 15:57:28 +08:00
2016-02-18 15:18:27 +08:00
2015-11-11 19:52:00 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2015-12-21 14:26:23 +08:00
2016-02-18 16:03:29 +08:00
2015-11-11 15:57:28 +08:00
2015-12-21 14:26:23 +08:00
2015-11-11 15:57:28 +08:00
2015-12-15 09:56:33 +08:00
2016-02-18 16:03:29 +08:00
2015-11-11 19:52:00 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 19:52:00 +08:00
2015-10-29 09:02:16 +09:00
2016-02-18 16:03:29 +08:00
2015-11-11 15:57:28 +08:00
2016-02-18 15:18:27 +08:00
2016-02-18 16:03:29 +08:00
2016-02-18 16:03:29 +08:00
2015-11-18 14:36:06 +08:00
2015-11-11 15:57:28 +08:00
2016-02-16 13:54:09 -08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 19:52:00 +08:00
2015-11-11 15:57:28 +08:00
2015-12-21 14:26:23 +08:00
2016-02-18 15:18:27 +08:00
2016-02-18 16:03:29 +08:00
2015-11-11 15:57:28 +08:00
2015-11-11 15:57:28 +08:00
2015-12-01 09:14:17 +08:00
2016-02-18 15:18:27 +08:00
2016-02-18 15:18:27 +08:00