From: Rasmus Villemoes Date: Thu, 12 Feb 2015 23:02:32 +0000 (-0800) Subject: lib/interval_tree.c: simplify includes X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=85c5e27c4a7d085e8a0e112f659f6375c6f309e1;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git lib/interval_tree.c: simplify includes The file uses nothing from init.h, and also doesn't need the full module.h machinery; export.h is sufficient. The latter requires the user to ensure compiler.h is included, so do that explicitly instead of relying on some other header pulling it in. Signed-off-by: Rasmus Villemoes Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/lib/interval_tree.c b/lib/interval_tree.c index f367f9ad544c..c85f6600a5f8 100644 --- a/lib/interval_tree.c +++ b/lib/interval_tree.c @@ -1,7 +1,7 @@ -#include #include #include -#include +#include +#include #define START(node) ((node)->start) #define LAST(node) ((node)->last)