diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-12-20 05:20:11 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-07 00:52:44 +0300 |
commit | 1fa7026ff026012f3a819b49d44dd6267997f379 (patch) | |
tree | d5bad7e1505eedea75f42b2231ac0fc69563a4ea /drivers/staging | |
parent | 653d1290be3bb04688514bec92c11eb6b7c324a7 (diff) | |
download | linux-1fa7026ff026012f3a819b49d44dd6267997f379.tar.xz |
Staging: android: remove dummy android.c driver
There are files now in the drivers/staging/android/ directory, so the
dummy android.c file can be safely removed.
Cc: Robert Love <rlove@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/android/Makefile | 1 | ||||
-rw-r--r-- | drivers/staging/android/TODO | 10 | ||||
-rw-r--r-- | drivers/staging/android/android.c | 18 |
3 files changed, 10 insertions, 19 deletions
diff --git a/drivers/staging/android/Makefile b/drivers/staging/android/Makefile index d9b1525550f7..7ea6fbe92f4b 100644 --- a/drivers/staging/android/Makefile +++ b/drivers/staging/android/Makefile @@ -1,4 +1,3 @@ -obj-$(CONFIG_ANDROID) += android.o obj-$(CONFIG_ANDROID_BINDER_IPC) += binder.o obj-$(CONFIG_ANDROID_LOGGER) += logger.o obj-$(CONFIG_ANDROID_RAM_CONSOLE) += ram_console.o diff --git a/drivers/staging/android/TODO b/drivers/staging/android/TODO new file mode 100644 index 000000000000..e59c5be4be2b --- /dev/null +++ b/drivers/staging/android/TODO @@ -0,0 +1,10 @@ +TODO: + - checkpatch.pl cleanups + - sparse fixes + - rename files to be not so "generic" + - make sure things build as modules properly + - add proper arch dependancies as needed + - audit userspace interfaces to make sure they are sane + +Please send patches to Greg Kroah-Hartman <greg@kroah.com> and Cc: +Brian Swetland <swetland@google.com> diff --git a/drivers/staging/android/android.c b/drivers/staging/android/android.c deleted file mode 100644 index b8ad5f358fd8..000000000000 --- a/drivers/staging/android/android.c +++ /dev/null @@ -1,18 +0,0 @@ -#include <linux/kernel.h> -#include <linux/init.h> -#include <linux/module.h> - -static int __init android_init(void) -{ - return 0; -} - -static void __exit android_exit(void) -{ -} - -module_init(android_init); -module_exit(android_exit); - -MODULE_AUTHOR("Greg Kroah-Hartman"); -MODULE_LICENSE("GPL"); |