Skip to content

Commit

Permalink
of/flattree: Drop an uninteresting message to pr_debug level
Browse files Browse the repository at this point in the history
This message looks like an error (which it isn't) when booting with a
flattened device tree.  Remove the message from normal kernel builds.

Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
  • Loading branch information
Paul Bolle authored and Grant Likely committed Mar 2, 2011
1 parent 337fc72 commit 8aaccf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/proc/proc_devtree.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void __init proc_device_tree_init(void)
return;
root = of_find_node_by_path("/");
if (root == NULL) {
printk(KERN_ERR "/proc/device-tree: can't find root\n");
pr_debug("/proc/device-tree: can't find root\n");
return;
}
proc_device_tree_add_node(root, proc_device_tree);
Expand Down

0 comments on commit 8aaccf7

Please sign in to comment.