Staging: add android framework
This prepares us to start adding the android drivers to the build. The dummy android.c file will go away in the next few patches, as it will not be needed once drivers/staging/android/ has a driver in it. Cc: Robert Love <rlove@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4cf7c4c692
commit
6dc9c9e8b0
@ -93,5 +93,7 @@ source "drivers/staging/frontier/Kconfig"
|
||||
|
||||
source "drivers/staging/epl/Kconfig"
|
||||
|
||||
source "drivers/staging/android/Kconfig"
|
||||
|
||||
endif # !STAGING_EXCLUDE_BUILD
|
||||
endif # STAGING
|
||||
|
@ -29,3 +29,4 @@ obj-$(CONFIG_USB_RSPI) += rspiusb/
|
||||
obj-$(CONFIG_INPUT_MIMIO) += mimio/
|
||||
obj-$(CONFIG_TRANZPORT) += frontier/
|
||||
obj-$(CONFIG_EPL) += epl/
|
||||
obj-$(CONFIG_ANDROID) += android/
|
||||
|
9
drivers/staging/android/Kconfig
Normal file
9
drivers/staging/android/Kconfig
Normal file
@ -0,0 +1,9 @@
|
||||
menu "Android"
|
||||
|
||||
config ANDROID
|
||||
bool "Android Drivers"
|
||||
default N
|
||||
---help---
|
||||
Enable support for various drivers needed on the Android platform
|
||||
|
||||
endmenu
|
1
drivers/staging/android/Makefile
Normal file
1
drivers/staging/android/Makefile
Normal file
@ -0,0 +1 @@
|
||||
obj-$(CONFIG_ANDROID) += android.o
|
18
drivers/staging/android/android.c
Normal file
18
drivers/staging/android/android.c
Normal file
@ -0,0 +1,18 @@
|
||||
#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