PageRenderTime 31ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/drivers/staging/staging.c

https://bitbucket.org/slukk/jb-tsm-kernel-4.2
C | 19 lines | 15 code | 4 blank | 0 comment | 0 complexity | 1af949d99ae416c569ef858a6361f20a MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, AGPL-1.0
  1. #include <linux/kernel.h>
  2. #include <linux/init.h>
  3. #include <linux/module.h>
  4. static int __init staging_init(void)
  5. {
  6. return 0;
  7. }
  8. static void __exit staging_exit(void)
  9. {
  10. }
  11. module_init(staging_init);
  12. module_exit(staging_exit);
  13. MODULE_AUTHOR("Greg Kroah-Hartman");
  14. MODULE_DESCRIPTION("Staging Core");
  15. MODULE_LICENSE("GPL");