aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2010-12-17 11:04:12 -0500
committerLiam Girdwood <lrg@slimlogic.co.uk>2011-01-12 09:33:05 -0500
commit13ce29f80fe3f61d3865b90244b1d1430f553e9f (patch)
tree96bec347346ed5607b97f814513a959f19beec3b /drivers/regulator
parent95a3c23ae620c1b4c499746e70f4034bdc067737 (diff)
regulator: Clean up logging a bit
The recent introduction of standard regulator API logging macros means that all our log messages have at least the function name in them and logging that the constraints are for the regulator API is probably a bit much. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> 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 ab419f8b2a84..911b774c745c 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -739,7 +739,7 @@ static void print_constraints(struct regulator_dev *rdev)
739 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY) 739 if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
740 count += sprintf(buf + count, "standby"); 740 count += sprintf(buf + count, "standby");
741 741
742 rdev_info(rdev, "regulator: %s\n", buf); 742 rdev_info(rdev, "%s\n", buf);
743} 743}
744 744
745static int machine_constraints_voltage(struct regulator_dev *rdev, 745static int machine_constraints_voltage(struct regulator_dev *rdev,