swh:1:snp:49cd9498d6cccc5e78252c27dcb645bcf7bf0c91
Raw File
Tip revision: 82d6897fefca6206bca7153805b4c5359ce97fc4 authored by Linus Torvalds on 15 July 2006, 21:53:08 UTC
Linux 2.6.18-rc2
Tip revision: 82d6897
hypervisor.c
/*
 * hypervisor.c - /sys/hypervisor subsystem.
 *
 * This file is released under the GPLv2
 *
 */

#include <linux/kobject.h>
#include <linux/device.h>

#include "base.h"

decl_subsys(hypervisor, NULL, NULL);
EXPORT_SYMBOL_GPL(hypervisor_subsys);

int __init hypervisor_init(void)
{
	return subsystem_register(&hypervisor_subsys);
}
back to top