mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 08:38:24 +08:00
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>
This commit is contained in:
parent
653d1290be
commit
1fa7026ff0
@ -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
|
||||
|
10
drivers/staging/android/TODO
Normal file
10
drivers/staging/android/TODO
Normal file
@ -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>
|
@ -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");
|
Loading…
Reference in New Issue
Block a user