From 4a7ff82758858f77328574519f144e554513e6ba Mon Sep 17 00:00:00 2001 From: John Stultz Date: Mon, 3 Mar 2014 01:35:23 -0800 Subject: [PATCH] staging: Fix build issues with new binder API MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 Cc: Colin Cross Cc: Arve Hjønnevåg Cc: Serban Constantinescu Cc: Android Kernel Team Reported-by: Arnd Bergmann Signed-off-by: John Stultz --- drivers/staging/android/Kconfig | 4 ++-- 1 file 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. -- 2.34.1