Messages in this thread Patch in this message |  | | From | Masahiro Yamada <> | Subject | [PATCH 03/12] irqdomain: replace <linux/radix-tree.h> with <linux/radix-tree-root.h> | Date | Mon, 9 Oct 2017 01:10:04 +0900 |
| |
This header requires the definition of struct radix_tree_root, but does not need to know anything about other radix tree stuff.
Include <linux/radix-tree-root.h> instead of <linux/radix-tree.h> to reduce the header dependency.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> ---
include/linux/irqdomain.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h index 81e4889..a1b30f8 100644 --- a/include/linux/irqdomain.h +++ b/include/linux/irqdomain.h @@ -32,7 +32,7 @@ #include <linux/types.h> #include <linux/irqhandler.h> #include <linux/of.h> -#include <linux/radix-tree.h> +#include <linux/radix-tree-root.h> struct device_node; struct irq_domain; -- 2.7.4
|  |