dts: rk3228: add i2s, spdif dts node
[firefly-linux-kernel-4.4.55.git] / lib / plist.c
index a0a4da489c22598748d7cea6da7e444d3b95f579..1ebc95f7a46f40bb36cb04e180f9a07696185bc8 100644 (file)
@@ -23,6 +23,7 @@
  * information.
  */
 
+#include <linux/bug.h>
 #include <linux/plist.h>
 #include <linux/spinlock.h>
 
@@ -174,7 +175,7 @@ static int  __init plist_test(void)
        int nr_expect = 0, i, loop;
        unsigned int r = local_clock();
 
-       printk(KERN_INFO "start plist test\n");
+       pr_debug("start plist test\n");
        plist_head_init(&test_head);
        for (i = 0; i < ARRAY_SIZE(test_node); i++)
                plist_node_init(test_node + i, 0);
@@ -202,7 +203,7 @@ static int  __init plist_test(void)
                plist_test_check(nr_expect);
        }
 
-       printk(KERN_INFO "end plist test\n");
+       pr_debug("end plist test\n");
        return 0;
 }