[PATCH] binderfs: Drop unused #include <linux/radix-tree.h>

Uwe Kleine-König posted 1 patch 2 years, 6 months ago
drivers/android/binderfs.c | 1 -
1 file changed, 1 deletion(-)
[PATCH] binderfs: Drop unused #include <linux/radix-tree.h>
Posted by Uwe Kleine-König 2 years, 6 months ago
binderfs.c doens't use any of the symbols provided by linux/radix-tree.h
and compiles just fine without this include. So drop the #include.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 drivers/android/binderfs.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/android/binderfs.c b/drivers/android/binderfs.c
index 76e7d6676657..90f497c3ff06 100644
--- a/drivers/android/binderfs.c
+++ b/drivers/android/binderfs.c
@@ -19,7 +19,6 @@
 #include <linux/mutex.h>
 #include <linux/mount.h>
 #include <linux/fs_parser.h>
-#include <linux/radix-tree.h>
 #include <linux/sched.h>
 #include <linux/seq_file.h>
 #include <linux/slab.h>

base-commit: 06c2afb862f9da8dc5efa4b6076a0e48c3fbaaa5
-- 
2.39.2

Re: [PATCH] binderfs: Drop unused #include <linux/radix-tree.h>
Posted by Christian Brauner 2 years, 6 months ago
On Fri, Jul 28, 2023 at 09:09:31AM +0200, Uwe Kleine-König wrote:
> binderfs.c doens't use any of the symbols provided by linux/radix-tree.h
> and compiles just fine without this include. So drop the #include.
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---

Acked-by: Christian Brauner <brauner@kernel.org>