hypervisor.c 334 B

12345678910111213141516171819
  1. /*
  2. * hypervisor.c - /sys/hypervisor subsystem.
  3. *
  4. * This file is released under the GPLv2
  5. *
  6. */
  7. #include <linux/kobject.h>
  8. #include <linux/device.h>
  9. #include "base.h"
  10. decl_subsys(hypervisor, NULL, NULL);
  11. EXPORT_SYMBOL_GPL(hypervisor_subsys);
  12. int __init hypervisor_init(void)
  13. {
  14. return subsystem_register(&hypervisor_subsys);
  15. }