driver.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * WiMedia Logical Link Control Protocol (WLP)
  3. *
  4. * Copyright (C) 2007 Intel Corporation
  5. * Reinette Chatre <reinette.chatre@intel.com>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License version
  9. * 2 as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  19. * 02110-1301, USA.
  20. *
  21. *
  22. * Life cycle of WLP substack
  23. *
  24. * FIXME: Docs
  25. */
  26. #include <linux/module.h>
  27. static int __init wlp_subsys_init(void)
  28. {
  29. return 0;
  30. }
  31. module_init(wlp_subsys_init);
  32. static void __exit wlp_subsys_exit(void)
  33. {
  34. return;
  35. }
  36. module_exit(wlp_subsys_exit);
  37. MODULE_AUTHOR("Reinette Chatre <reinette.chatre@intel.com>");
  38. MODULE_DESCRIPTION("WiMedia Logical Link Control Protocol (WLP)");
  39. MODULE_LICENSE("GPL");