UPSTREAM: regulator: core: avoid unused variable warning
authorArnd Bergmann <arnd@arndb.de>
Fri, 20 Nov 2015 14:24:39 +0000 (15:24 +0100)
committerGerrit Code Review <gerrit@rock-chips.com>
Wed, 2 Mar 2016 05:51:40 +0000 (13:51 +0800)
commit40e4c3535811ea74490bfa4fbe09cf85bb305efb
tree454d94da7d7411d35d8fe48413d6f72b6b56ed2c
parent8f99da39a9d96d46cc37c17291f2b7a7ec53e780
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: 9f01cd4a915 ("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
drivers/regulator/core.c