GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / staging.c
blob233e589c093286dd272cc2ff1705e81206430a43
1 #include <linux/kernel.h>
2 #include <linux/init.h>
3 #include <linux/module.h>
5 static int __init staging_init(void)
7 return 0;
10 static void __exit staging_exit(void)
14 module_init(staging_init);
15 module_exit(staging_exit);
17 MODULE_AUTHOR("Greg Kroah-Hartman");
18 MODULE_DESCRIPTION("Staging Core");
19 MODULE_LICENSE("GPL");