Skip to content

Commit 326c34e

Browse files
sidkumar99akpm00
authored andcommitted
tools/testing/radix-tree: add missing MODULE_DESCRIPTION definition
Userspace builds of the radix-tree testing suite fails because of commit test_maple_tree: add the missing MODULE_DESCRIPTION() macro. Add the proper defines to tools/testing/radix-tree/maple.c and tools/testing/radix-tree/xarray.c so MODULE_DESCRIPTION has a definition. This allows the build to succeed. Link: https://lkml.kernel.org/r/[email protected] Fixes: 9f8090e ("test_maple_tree: add the missing MODULE_DESCRIPTION() macro") Signed-off-by: Sidhartha Kumar <[email protected]> Reviewed-by: Liam R. Howlett <[email protected]> Cc: Jeff Johnson <[email protected]> Cc: Matthew Wilcox (Oracle) <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 03bf004 commit 326c34e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tools/testing/radix-tree/maple.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#define module_init(x)
2020
#define module_exit(x)
2121
#define MODULE_AUTHOR(x)
22+
#define MODULE_DESCRIPTION(X)
2223
#define MODULE_LICENSE(x)
2324
#define dump_stack() assert(0)
2425

tools/testing/radix-tree/xarray.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define module_init(x)
1111
#define module_exit(x)
1212
#define MODULE_AUTHOR(x)
13+
#define MODULE_DESCRIPTION(X)
1314
#define MODULE_LICENSE(x)
1415
#define dump_stack() assert(0)
1516

0 commit comments

Comments
 (0)