Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 126766
b: refs/heads/master
c: 6dc9c9e
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Jan 6, 2009
1 parent 024d592 commit 5444812
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4cf7c4c692f05e137b65b9a2d7abe5bcb5408820
refs/heads/master: 6dc9c9e8b0b51abd9a332f5f4767df729848d579
2 changes: 2 additions & 0 deletions trunk/drivers/staging/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions trunk/drivers/staging/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 9 additions & 0 deletions trunk/drivers/staging/android/Kconfig
Original file line number Diff line number Diff line change
@@ -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 change: 1 addition & 0 deletions trunk/drivers/staging/android/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
obj-$(CONFIG_ANDROID) += android.o
18 changes: 18 additions & 0 deletions trunk/drivers/staging/android/android.c
Original file line number Diff line number Diff line change
@@ -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");

0 comments on commit 5444812

Please sign in to comment.