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-28 11:51:31 -0700
commit017998fb9691e3cc76c4f8adcddd6aa2d81cd091 (patch)
treed68f9b3006f475b8c8bb140bdd2dcb031ed3834d
parent091547ff6e14973d66c58505c71964d7560de596 (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 02703dd221a6..511883e1789b 100644
--- a/drivers/staging/android/Kconfig
+++ b/drivers/staging/android/Kconfig
@@ -21,9 +21,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.