* [PATCH] drivers/base/core.c: output device renaming messages with dev_dbg().
@ 2013-10-13 14:44 ethan.zhao
0 siblings, 0 replies; only message in thread
From: ethan.zhao @ 2013-10-13 14:44 UTC (permalink / raw)
To: gregkh; +Cc: linux-kernel, ethan.zhao
From: "ethan.zhao" <ethan.kernel@gmail.com>
Replace pr_debug() with dev_dbg().
Signed-off-by: ethan.zhao <ethan.kernel@gmail.com>
---
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)
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-10-13 14:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-13 14:44 [PATCH] drivers/base/core.c: output device renaming messages with dev_dbg() ethan.zhao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox