diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-12-20 20:20:02 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:52:46 -0800 |
commit | 7a9c67a6ad2e6911e7ebdae34a75835c537d6e84 (patch) | |
tree | d675831ad09ba46d44c04c7694c831ba1814f5ff /drivers/staging/android/Kconfig | |
parent | 08b88cc7844bf984e2e474134c207bb2c46c007d (diff) |
Staging: android: binder: fix build errors
This fixes the build errors and warnings in the binder driver. It can't
be a module, due to a lack of some of the symbols being exported.
Also added a MODULE_LICENSE(), as it was missing.
Cc: Arve Hjønnevåg <arve@android.com>
Cc: Brian Swetland <swetland@google.com>
Cc: Robert Love <rlove@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/android/Kconfig')
-rw-r--r-- | drivers/staging/android/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/android/Kconfig b/drivers/staging/android/Kconfig index 934f6f2019b..6b996db0dd6 100644 --- a/drivers/staging/android/Kconfig +++ b/drivers/staging/android/Kconfig @@ -7,8 +7,8 @@ config ANDROID Enable support for various drivers needed on the Android platform config ANDROID_BINDER_IPC - tristate "Android Binder IPC Driver" - default y + bool "Android Binder IPC Driver" + default n config ANDROID_LOGGER tristate "Android log driver" |