aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/android/Kconfig
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2014-02-21 14:40:27 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-24 16:29:40 -0800
commit1acec6a28347c3e57d9f882088f92caf0f4aec94 (patch)
treed0020d0873dac35ecc85345a941ebbde0b7996b8 /drivers/staging/android/Kconfig
parentstaging: binder: Support concurrent 32 bit and 64 bit processes. (diff)
downloadlinux-dev-1acec6a28347c3e57d9f882088f92caf0f4aec94.tar.xz
linux-dev-1acec6a28347c3e57d9f882088f92caf0f4aec94.zip
staging: binder: Improve Kconfig entry for ANDROID_BINDER_IPC_32BIT
Add a more clear explanation of the option in the prompt, and make the config depend on ANDROID_BINDER_IPC being selected. Also sets the default to y, which matches AOSP. Cc: Colin Cross <ccross@android.com> Cc: Arve Hjønnevåg <arve@android.com> Cc: Serban Constantinescu <serban.constantinescu@arm.com> Cc: Android Kernel Team <kernel-team@android.com> Signed-off-by: John Stultz <john.stultz@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android/Kconfig')
-rw-r--r--drivers/staging/android/Kconfig5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig
index 3559690273aa..1c779efc21aa 100644
--- a/drivers/staging/android/Kconfig
+++ b/drivers/staging/android/Kconfig
@@ -21,8 +21,9 @@ config ANDROID_BINDER_IPC
between said processes.
config ANDROID_BINDER_IPC_32BIT
- bool "Use old 32-bit binder api"
- depends on !64BIT
+ bool "Use old (Android 4.4 and earlier) 32-bit binder API"
+ depends on !64BIT && ANDROID_BINDER_IPC
+ default y
---help---
The Binder API has been changed to support both 32 and 64bit
applications in a mixed environment.