aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Coenen <maco@android.com>2017-06-28 14:11:54 -0700
committerMoyster <oysterized@gmail.com>2017-10-20 13:05:19 +0200
commitce94a41204865079f725db4ba2ef5ae19375547b (patch)
treee5949895c2e3c6dd5aea989affc281c782f6a6be
parent11cbafb1dd027f23cd8ea150981fe251d43cf269 (diff)
ANDROID: binder: use 64-bit interface on 32-bit kernels.
There's no good reason to not use the 64-bit interface on 32-bit kernels. Android userspace wants to support generic 32-bit system images, and having to support two binder interfaces on such a single image is practically impossible. Since the majority of deployed Android devices now run a > 4.4 userspace, this seems like a good time to flip the default. Change-Id: I3562784bbee8185cc56bb39809bd677ba27297a3 Signed-off-by: Martijn Coenen <maco@android.com>
-rw-r--r--drivers/android/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/android/Kconfig b/drivers/android/Kconfig
index a82fc022d..f06b07038 100644
--- a/drivers/android/Kconfig
+++ b/drivers/android/Kconfig
@@ -32,9 +32,9 @@ config ANDROID_BINDER_DEVICES
therefore logically separated from the other devices.
config ANDROID_BINDER_IPC_32BIT
- bool
+ bool "Use old (Android 4.4 and earlier) 32-bit binder API"
depends on !64BIT && ANDROID_BINDER_IPC
- default y
+ default n
---help---
The Binder API has been changed to support both 32 and 64bit
applications in a mixed environment.