mirror of https://gitee.com/openkylin/linux.git
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>
This commit is contained in:
parent
cb487c5c0e
commit
e77addc597
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue