diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-03-18 15:53:01 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-19 10:19:46 +0000 |
commit | e77addc5975e935109a1530ff726d7b42b43392b (patch) | |
tree | c9f6fcdd38da91cc630c380ddcecbd6c1960401c /drivers/regulator/dbx500-prcmu.c | |
parent | cb487c5c0ed3da63b04d9f866fa085a88ce2d0eb (diff) | |
download | linux-e77addc5975e935109a1530ff726d7b42b43392b.tar.gz linux-e77addc5975e935109a1530ff726d7b42b43392b.tar.bz2 linux-e77addc5975e935109a1530ff726d7b42b43392b.zip |
regulator: dbx500-prcmu: Silence checkpatch warnings
Silences the following warning type:
WARNING: Missing a blank line after declarations
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/dbx500-prcmu.c')
-rw-r--r-- | drivers/regulator/dbx500-prcmu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/dbx500-prcmu.c b/drivers/regulator/dbx500-prcmu.c index f111dfb8d2d7..538478883ae2 100644 --- a/drivers/regulator/dbx500-prcmu.c +++ b/drivers/regulator/dbx500-prcmu.c @@ -78,6 +78,7 @@ static struct ux500_regulator_debug { void ux500_regulator_suspend_debug(void) { int i; + for (i = 0; i < rdebug.num_regulators; i++) rdebug.state_before_suspend[i] = rdebug.regulator_array[i].is_enabled; @@ -86,6 +87,7 @@ void ux500_regulator_suspend_debug(void) void ux500_regulator_resume_debug(void) { int i; + for (i = 0; i < rdebug.num_regulators; i++) rdebug.state_after_suspend[i] = rdebug.regulator_array[i].is_enabled; |