projects
/
platform
/
kernel
/
linux-amlogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3dffc82
)
Staging: android: fix Kconfig issues
author
Greg Kroah-Hartman
<gregkh@suse.de>
Thu, 4 Jun 2009 17:40:37 +0000
(10:40 -0700)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Fri, 19 Jun 2009 18:00:52 +0000
(11:00 -0700)
Wrap all ANDROID config items with a #if to keep from asking if you want
specific Android drivers even if you say N to CONFIG_ANDROID
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/android/Kconfig
patch
|
blob
|
history
diff --git
a/drivers/staging/android/Kconfig
b/drivers/staging/android/Kconfig
index
1784508
..
2471949
100644
(file)
--- a/
drivers/staging/android/Kconfig
+++ b/
drivers/staging/android/Kconfig
@@
-6,6
+6,8
@@
config ANDROID
---help---
Enable support for various drivers needed on the Android platform
+if ANDROID
+
config ANDROID_BINDER_IPC
bool "Android Binder IPC Driver"
default n
@@
-88,4
+90,6
@@
config ANDROID_LOW_MEMORY_KILLER
---help---
Register processes to be killed when memory is low
+endif # if ANDROID
+
endmenu