aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2010-02-11 19:20:48 +0000
committerLiam Girdwood <lrg@slimlogic.co.uk>2010-02-12 11:19:57 +0000
commit973e9a2795b3b41d8408a0bb6f87b783c5efc88a (patch)
tree389bb05780ae75a98bebdb6ee4dd6e866ae6d381 /drivers/regulator
parent676ad585531e965416fd958747894541dabcec96 (diff)
downloadkernel_samsung_smdk4412-973e9a2795b3b41d8408a0bb6f87b783c5efc88a.zip
kernel_samsung_smdk4412-973e9a2795b3b41d8408a0bb6f87b783c5efc88a.tar.gz
kernel_samsung_smdk4412-973e9a2795b3b41d8408a0bb6f87b783c5efc88a.tar.bz2
regulator: Fix display of null constraints for regulators
If the regulator constraints are empty and there is no voltage reported then nothing will be added to the text displayed for the constraints, leading to random stack data being printed. This is unlikely to happen for practical regulators since most will at least report a voltage but should still be fixed. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Cc: stable@kernel.org Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 686ef27..b60a4c9 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -661,7 +661,7 @@ static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
static void print_constraints(struct regulator_dev *rdev)
{
struct regulation_constraints *constraints = rdev->constraints;
- char buf[80];
+ char buf[80] = "";
int count = 0;
int ret;