[PATCH] drivers/base/core.c: output device renaming messages with dev_dbg().

From: ethan.zhao
Date: Sun Oct 13 2013 - 10:46:37 EST


From: "ethan.zhao" <ethan.kernel@xxxxxxxxx>

Replace pr_debug() with dev_dbg().

Signed-off-by: ethan.zhao <ethan.kernel@xxxxxxxxx>
---
drivers/base/core.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/base/core.c b/drivers/base/core.c
index 2d1c6ba..8c4d3dc 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -1904,8 +1904,7 @@ int device_rename(struct device *dev, const char *new_name)
if (!dev)
return -EINVAL;

- pr_debug("device: '%s': %s: renaming to '%s'\n", dev_name(dev),
- __func__, new_name);
+ dev_dbg(dev, "renaming to %s\n", new_name);

old_device_name = kstrdup(dev_name(dev), GFP_KERNEL);
if (!old_device_name) {
--
1.7.12.4 (Apple Git-37)

--
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/