of/unittest: typo in error string
authorFrank Rowand <frank.rowand@sonymobile.com>
Sat, 14 Mar 2015 06:59:01 +0000 (23:59 -0700)
committerGrant Likely <grant.likely@linaro.org>
Sun, 29 Mar 2015 07:56:18 +0000 (08:56 +0100)
Fix bug pointed out by checkpatch.

Splitting string incorrectly removed a space between two words.

Signed-off-by: Frank Rowand <frank.rowand@sonymobile.com>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
drivers/of/unittest.c

index b322624adb5818109a00cf3d4650277c392e4e91..276d2ada16e93241977689191dac0a47ed73b690 100644 (file)
@@ -228,8 +228,9 @@ static void __init of_selftest_check_tree_linkage(void)
        child_count = of_selftest_check_node_linkage(of_root);
 
        selftest(child_count > 0, "Device node data structure is corrupted\n");
-       selftest(child_count == allnode_count, "allnodes list size (%i) doesn't match"
-                "sibling lists size (%i)\n", allnode_count, child_count);
+       selftest(child_count == allnode_count,
+                "allnodes list size (%i) doesn't match sibling lists size (%i)\n",
+                allnode_count, child_count);
        pr_debug("allnodes list size (%i); sibling lists size (%i)\n", allnode_count, child_count);
 }
 
This page took 0.027866 seconds and 5 git commands to generate.