hypervisor.c 518 B

12345678910111213141516171819202122232425
  1. /*
  2. * hypervisor.c - /sys/hypervisor subsystem.
  3. *
  4. * Copyright (C) IBM Corp. 2006
  5. * Copyright (C) 2007 Greg Kroah-Hartman <gregkh@suse.de>
  6. * Copyright (C) 2007 Novell Inc.
  7. *
  8. * This file is released under the GPLv2
  9. */
  10. #include <linux/kobject.h>
  11. #include <linux/device.h>
  12. #include "base.h"
  13. struct kobject *hypervisor_kobj;
  14. EXPORT_SYMBOL_GPL(hypervisor_kobj);
  15. int __init hypervisor_init(void)
  16. {
  17. hypervisor_kobj = kobject_create_and_add("hypervisor", NULL);
  18. if (!hypervisor_kobj)
  19. return -ENOMEM;
  20. return 0;
  21. }