aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/android/Kconfig
diff options
context:
space:
mode:
authorChen Gang <gang.chen@asianux.com>2013-09-02 17:11:57 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-17 07:47:39 -0700
commit31507f74f1b2f540614b60cf98d6091f321e4290 (patch)
treefb5e6aa66d17d86cc113ec53e2d13d1fe981e39d /drivers/staging/android/Kconfig
parentStaging: android: Mark local functions in binder.c as static (diff)
downloadlinux-dev-31507f74f1b2f540614b60cf98d6091f321e4290.tar.xz
linux-dev-31507f74f1b2f540614b60cf98d6091f321e4290.zip
drivers: staging: android: Kconfig: add depends on MMU for ANDROID_BINDER_IPC
ANDROID_BINDER_IPC used the functions which need depend on MMU, so need let it depend on MMU too, or compiling fails. The related error: drivers/built-in.o: In function `binder_update_page_range': drivers/staging/android/binder.c:599: undefined reference to `map_vm_area' drivers/staging/android/binder.c:626: undefined reference to `zap_page_range' drivers/built-in.o: In function `binder_mmap': drivers/staging/android/binder.c:2744: undefined reference to `get_vm_area' Signed-off-by: Chen Gang <gang.chen@asianux.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android/Kconfig')
-rw-r--r--drivers/staging/android/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig
index c0c95be0f969..85fc94b2e0f7 100644
--- a/drivers/staging/android/Kconfig
+++ b/drivers/staging/android/Kconfig
@@ -10,6 +10,7 @@ if ANDROID
config ANDROID_BINDER_IPC
bool "Android Binder IPC Driver"
+ depends on MMU
default n
---help---
Binder is used in Android for both communication between processes,