diff options
author | Liam R. Howlett <[email protected]> | 2022-09-06 19:48:39 +0000 |
---|---|---|
committer | Andrew Morton <[email protected]> | 2022-09-26 19:46:13 -0700 |
commit | fbeea9d117ea8c43c7fb65b429ed7ebd010d0e3f (patch) | |
tree | f60d4cf32b6aebfaf590a623c17c6166a09f839f | |
parent | 54a611b605901c7d5d05b6b8f5d04a6ceb0962aa (diff) |
radix tree test suite: add pr_err define
define pr_err to printk
Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Liam R. Howlett <[email protected]>
Tested-by: Yu Zhao <[email protected]>
Cc: Catalin Marinas <[email protected]>
Cc: David Hildenbrand <[email protected]>
Cc: David Howells <[email protected]>
Cc: Davidlohr Bueso <[email protected]>
Cc: "Matthew Wilcox (Oracle)" <[email protected]>
Cc: SeongJae Park <[email protected]>
Cc: Sven Schnelle <[email protected]>
Cc: Vlastimil Babka <[email protected]>
Cc: Will Deacon <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
-rw-r--r-- | tools/testing/radix-tree/linux/kernel.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/radix-tree/linux/kernel.h b/tools/testing/radix-tree/linux/kernel.h index 39867fd80c8f..c5c9d05f29da 100644 --- a/tools/testing/radix-tree/linux/kernel.h +++ b/tools/testing/radix-tree/linux/kernel.h @@ -14,6 +14,7 @@ #include "../../../include/linux/kconfig.h" #define printk printf +#define pr_err printk #define pr_info printk #define pr_debug printk #define pr_cont printk |