diff options
author | Tanzir Hasan <[email protected]> | 2023-12-26 17:09:23 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-01-04 16:36:07 +0100 |
commit | 54ffdab820801372f3632bb86613407df34b921b (patch) | |
tree | cea876d7b98065807d56b1f331cfd96a6dd70740 | |
parent | 2e9bf5cc912365d20e3255a0779f5516157b923e (diff) |
android: binder: binderfs.c: removed asm-generic/errno-base.h
asm-generic/errno-base.h can be replaced by linux/errno.h and the file
will still build correctly. It is an asm-generic file which should be
avoided if possible.
Suggested-by: Al Viro <[email protected]>
Signed-off-by: Tanzir Hasan <[email protected]>
Acked-by: Carlos Llamas <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/android/binderfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/android/binderfs.c b/drivers/android/binderfs.c index 1224ab7aa070..d04ff6029480 100644 --- a/drivers/android/binderfs.c +++ b/drivers/android/binderfs.c @@ -29,7 +29,7 @@ #include <linux/uaccess.h> #include <linux/user_namespace.h> #include <linux/xarray.h> -#include <uapi/asm-generic/errno-base.h> +#include <linux/errno.h> #include <uapi/linux/android/binder.h> #include <uapi/linux/android/binderfs.h> |