2006-05-09 12:53:49 +02:00
|
|
|
/*
|
|
|
|
* hypervisor.c - /sys/hypervisor subsystem.
|
|
|
|
*
|
2006-09-20 15:58:44 +02:00
|
|
|
* Copyright (C) IBM Corp. 2006
|
2007-11-01 16:29:06 +01:00
|
|
|
* Copyright (C) 2007 Greg Kroah-Hartman <gregkh@suse.de>
|
|
|
|
* Copyright (C) 2007 Novell Inc.
|
2006-05-09 12:53:49 +02:00
|
|
|
*
|
2006-09-20 15:58:44 +02:00
|
|
|
* This file is released under the GPLv2
|
2006-05-09 12:53:49 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kobject.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include "base.h"
|
|
|
|
|
2007-11-01 16:29:06 +01:00
|
|
|
struct kobject *hypervisor_kobj;
|
|
|
|
EXPORT_SYMBOL_GPL(hypervisor_kobj);
|
2006-05-09 12:53:49 +02:00
|
|
|
|
|
|
|
int __init hypervisor_init(void)
|
|
|
|
{
|
2007-11-01 16:29:06 +01:00
|
|
|
hypervisor_kobj = kobject_create_and_add("hypervisor", NULL);
|
|
|
|
if (!hypervisor_kobj)
|
|
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
2006-05-09 12:53:49 +02:00
|
|
|
}
|