aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2008-12-19 21:20:11 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2009-01-06 16:52:44 -0500
commit1fa7026ff026012f3a819b49d44dd6267997f379 (patch)
treed5bad7e1505eedea75f42b2231ac0fc69563a4ea /drivers
parent653d1290be3bb04688514bec92c11eb6b7c324a7 (diff)
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')
-rw-r--r--drivers/staging/android/Makefile1
-rw-r--r--drivers/staging/android/TODO10
-rw-r--r--drivers/staging/android/android.c18
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 @@
1obj-$(CONFIG_ANDROID) += android.o
2obj-$(CONFIG_ANDROID_BINDER_IPC) += binder.o 1obj-$(CONFIG_ANDROID_BINDER_IPC) += binder.o
3obj-$(CONFIG_ANDROID_LOGGER) += logger.o 2obj-$(CONFIG_ANDROID_LOGGER) += logger.o
4obj-$(CONFIG_ANDROID_RAM_CONSOLE) += ram_console.o 3obj-$(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 @@
1TODO:
2 - checkpatch.pl cleanups
3 - sparse fixes
4 - rename files to be not so "generic"
5 - make sure things build as modules properly
6 - add proper arch dependancies as needed
7 - audit userspace interfaces to make sure they are sane
8
9Please send patches to Greg Kroah-Hartman <greg@kroah.com> and Cc:
10Brian 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 @@
1#include <linux/kernel.h>
2#include <linux/init.h>
3#include <linux/module.h>
4
5static int __init android_init(void)
6{
7 return 0;
8}
9
10static void __exit android_exit(void)
11{
12}
13
14module_init(android_init);
15module_exit(android_exit);
16
17MODULE_AUTHOR("Greg Kroah-Hartman");
18MODULE_LICENSE("GPL");