]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
Staging: android: remove dummy android.c driver
authorGreg Kroah-Hartman <gregkh@suse.de>
Sat, 20 Dec 2008 02:20:11 +0000 (18:20 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 6 Jan 2009 21:52:44 +0000 (13:52 -0800)
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>
drivers/staging/android/Makefile
drivers/staging/android/TODO [new file with mode: 0644]
drivers/staging/android/android.c [deleted file]

index d9b1525550f79946dc850ba099d1c0960739cc83..7ea6fbe92f4b57274eec921f1725e218d63e208d 100644 (file)
@@ -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 (file)
index 0000000..e59c5be
--- /dev/null
@@ -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 (file)
index b8ad5f3..0000000
+++ /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");