aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Stultz <john.stultz@linaro.org>2014-03-03 01:35:23 -0800
committerJohn Stultz <john.stultz@linaro.org>2014-03-03 01:35:23 -0800
commit4a7ff82758858f77328574519f144e554513e6ba (patch)
tree4bd8658f44a8eb46c52407ee57aea72ac02c6ab8
parent34f3211a85449939f787260237538dfb714ddb43 (diff)
staging: Fix build issues with new binder API
The new 64bit binder API causes build issues on 32bit ARM due to the lack of 64bit __get_user_asm_* implementation. Until that implementation is done, remove the choice for 32bit ARM, automatically enabling the old 32bit binder protocol. This can be reverted once a 64bit __get_user_asm_* implementation is merged. Cc: Greg KH <gregkh@linuxfoundation.org> 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> Reported-by: Arnd Bergmann <arnd.bergmann@linaro.org> Signed-off-by: John Stultz <john.stultz@linaro.org>
-rw-r--r--drivers/staging/android/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig
index a802bc0bf4a4..1e1b36ab1389 100644
--- a/drivers/staging/android/Kconfig
+++ b/drivers/staging/android/Kconfig
@@ -20,9 +20,9 @@ config ANDROID_BINDER_IPC
between said processes.
config ANDROID_BINDER_IPC_32BIT
- bool "Use old 32-bit binder api"
+ bool
default y
- depends on !64BIT
+ depends on !64BIT && ANDROID_BINDER_IPC
---help---
Enable to support an old 32-bit Android user-space. Breaks the new
Android user-space.