Skip to content
Snippets Groups Projects
Commit 94f8cc0e authored by Frank Rowand's avatar Frank Rowand Committed by Greg Kroah-Hartman
Browse files

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


pr_debug() parameters are reverse order of format string

Signed-off-by: default avatarFrank Rowand <frank.rowand@sonymobile.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 98b0f811
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment