From 976b7c864942733731dbee8c09048b02a91b8a1e Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 19 Dec 2008 18:20:11 -0800 Subject: Staging: android: remove dummy android.c driver From: Greg Kroah-Hartman There are files now in the drivers/staging/android/ directory, so the dummy android.c file can be safely removed. Cc: Robert Love Signed-off-by: Greg Kroah-Hartman --- drivers/staging/android/Makefile | 1 - drivers/staging/android/TODO | 10 ++++++++++ drivers/staging/android/android.c | 18 ------------------ 3 files changed, 10 insertions(+), 19 deletions(-) delete mode 100644 drivers/staging/android/android.c --- a/drivers/staging/android/android.c +++ /dev/null @@ -1,18 +0,0 @@ -#include -#include -#include - -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"); --- 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 --- /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 and Cc: +Brian Swetland