From 9cec898d4dc9a37bb99ed08f8260cd70b8971345 Mon Sep 17 00:00:00 2001 From: Artem Borisov Date: Tue, 7 Nov 2017 20:39:17 +0300 Subject: [PATCH] msm8974-common: Use 64-bit binder API AOSP and mainline are going towards removing old 32-bit binder API support. 64-bit binder is 100% compatible with 32-bit kernel and userspace, so there is no reason for us to keep using the old solution anymore. We've switched to new API in our kernel, same thing should be applied to our userspace. Change-Id: I3c95bd7fbd023c5cb08e856b3a3889c03228e843 --- BoardConfigCommon.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index bb171ac..a0056fe 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -26,6 +26,9 @@ TARGET_CPU_VARIANT := krait # Audio BOARD_USES_ALSA_AUDIO := true +# Binder API version +TARGET_USES_64_BIT_BINDER := true + # Bluetooth BOARD_HAVE_BLUETOOTH := true