summaryrefslogtreecommitdiff
path: root/tools/testing/memblock/linux
diff options
context:
space:
mode:
authorWei Yang <richard.weiyang@gmail.com>2024-07-12 03:51:38 +0000
committerMike Rapoport (Microsoft) <rppt@kernel.org>2024-08-06 08:17:50 +0300
commite2ae9cf39f8806d2d8f5eb0a22ba511804a804ec (patch)
tree083f1961a588675c12e89b13fd65772de84dfb74 /tools/testing/memblock/linux
parentd68c08173b70952cd74bb45075b843f4a637a43b (diff)
tools/testing: abstract two init.h into common include directory
Currently we have two test suits define its own init.h. This is a little redundant. Let's create a init.h in common include directory and merge these two into it. Signed-off-by: Wei Yang <richard.weiyang@gmail.com> CC: Mike Rapoport <rppt@kernel.org> CC: Liam R. Howlett <Liam.Howlett@oracle.com> Link: https://lore.kernel.org/r/20240712035138.24674-3-richard.weiyang@gmail.com Signed-off-by: Mike Rapoport (Microsoft) <rppt@kernel.org>
Diffstat (limited to 'tools/testing/memblock/linux')
-rw-r--r--tools/testing/memblock/linux/init.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/testing/memblock/linux/init.h b/tools/testing/memblock/linux/init.h
deleted file mode 100644
index bd74abc5cba6..000000000000
--- a/tools/testing/memblock/linux/init.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef _LINUX_INIT_H
-#define _LINUX_INIT_H
-
-#include <linux/compiler.h>
-
-#define __section(section) __attribute__((__section__(section)))
-
-#define __initconst
-#define __meminit
-#define __meminitdata
-#define __refdata
-#define __initdata
-
-struct obs_kernel_param {
- const char *str;
- int (*setup_func)(char *st);
- int early;
-};
-
-#define __setup_param(str, unique_id, fn, early) \
- static const char __setup_str_##unique_id[] __initconst \
- __aligned(1) = str; \
- static struct obs_kernel_param __setup_##unique_id \
- __used __section(".init.setup") \
- __aligned(__alignof__(struct obs_kernel_param)) = \
- { __setup_str_##unique_id, fn, early }
-
-#define early_param(str, fn) \
- __setup_param(str, fn, fn, 1)
-
-#endif