[PATCH] regulator: Rename rdev_debug to rdev_dbg

From: Joe Perches
Date: Mon Nov 29 2010 - 20:13:03 EST


Just to please broonie...

Signed-off-by: Joe Perches <joe@xxxxxxxxxxx>
---
drivers/regulator/core.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index ad1999b..bc841b8 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -38,7 +38,7 @@
pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
#define rdev_info(rdev, fmt, ...) \
pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
-#define rdev_debug(rdev, fmt, ...) \
+#define rdev_dbg(rdev, fmt, ...) \
pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)

static DEFINE_MUTEX(regulator_list_mutex);
@@ -792,13 +792,13 @@ static int machine_constraints_voltage(struct regulator_dev *rdev,

/* use regulator's subset of machine constraints */
if (constraints->min_uV < min_uV) {
- rdev_debug(rdev, "override min_uV, %d -> %d\n",
- constraints->min_uV, min_uV);
+ rdev_dbg(rdev, "override min_uV, %d -> %d\n",
+ constraints->min_uV, min_uV);
constraints->min_uV = min_uV;
}
if (constraints->max_uV > max_uV) {
- rdev_debug(rdev, "override max_uV, %d -> %d\n",
- constraints->max_uV, max_uV);
+ rdev_dbg(rdev, "override max_uV, %d -> %d\n",
+ constraints->max_uV, max_uV);
constraints->max_uV = max_uV;
}
}
--
1.7.3.2.245.g03276.dirty

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/