提交 94f8cc0e 编写于 作者: F Frank Rowand 提交者: Greg Kroah-Hartman

drivers/base/dd.c incorrect pr_debug() parameters

pr_debug() parameters are reverse order of format string
Signed-off-by: NFrank Rowand <frank.rowand@sonymobile.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 98b0f811
......@@ -187,8 +187,8 @@ static void driver_bound(struct device *dev)
return;
}
pr_debug("driver: '%s': %s: bound to device '%s'\n", dev_name(dev),
__func__, dev->driver->name);
pr_debug("driver: '%s': %s: bound to device '%s'\n", dev->driver->name,
__func__, dev_name(dev));
klist_add_tail(&dev->p->knode_driver, &dev->driver->p->klist_devices);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册