From: John Stultz Date: Fri, 21 Feb 2014 22:40:27 +0000 (-0800) Subject: staging: binder: Improve Kconfig entry for ANDROID_BINDER_IPC_32BIT X-Git-Tag: v4.14-rc1~7811^2~907 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1acec6a28347c3e57d9f882088f92caf0f4aec94;p=platform%2Fkernel%2Flinux-rpi.git 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 Cc: Arve Hjønnevåg Cc: Serban Constantinescu Cc: Android Kernel Team Signed-off-by: John Stultz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig index 3559690..1c779ef 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.