[BACK]Return to hypervisor.c CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / drivers / base

File: [Development] / linux-2.6-xfs / drivers / base / hypervisor.c (download)

Revision 1.1, Fri Oct 13 17:03:09 2006 UTC (11 years ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN

Merge up to 2.6.18
Merge of 2.6.x-xfs-melb:linux:27192b by kenmcd.

/*
 * 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);
}