blob: 7080b413ddc9f6c475056adf161cf248321c9927 [file] [log] [blame]
Michael Holzheu40394832006-05-09 12:53:49 +02001/*
2 * hypervisor.c - /sys/hypervisor subsystem.
3 *
Michael Holzheuf19bfb22006-09-20 15:58:44 +02004 * Copyright (C) IBM Corp. 2006
Michael Holzheu40394832006-05-09 12:53:49 +02005 *
Michael Holzheuf19bfb22006-09-20 15:58:44 +02006 * This file is released under the GPLv2
Michael Holzheu40394832006-05-09 12:53:49 +02007 */
8
9#include <linux/kobject.h>
10#include <linux/device.h>
11
12#include "base.h"
13
14decl_subsys(hypervisor, NULL, NULL);
15EXPORT_SYMBOL_GPL(hypervisor_subsys);
16
17int __init hypervisor_init(void)
18{
19 return subsystem_register(&hypervisor_subsys);
20}