Michael Holzheu | 4039483 | 2006-05-09 12:53:49 +0200 | [diff] [blame] | 1 | /* |
| 2 | * hypervisor.c - /sys/hypervisor subsystem. |
| 3 | * |
Michael Holzheu | f19bfb2 | 2006-09-20 15:58:44 +0200 | [diff] [blame] | 4 | * Copyright (C) IBM Corp. 2006 |
Michael Holzheu | 4039483 | 2006-05-09 12:53:49 +0200 | [diff] [blame] | 5 | * |
Michael Holzheu | f19bfb2 | 2006-09-20 15:58:44 +0200 | [diff] [blame] | 6 | * This file is released under the GPLv2 |
Michael Holzheu | 4039483 | 2006-05-09 12:53:49 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/kobject.h> |
| 10 | #include <linux/device.h> |
| 11 | |
| 12 | #include "base.h" |
| 13 | |
| 14 | decl_subsys(hypervisor, NULL, NULL); |
| 15 | EXPORT_SYMBOL_GPL(hypervisor_subsys); |
| 16 | |
| 17 | int __init hypervisor_init(void) |
| 18 | { |
| 19 | return subsystem_register(&hypervisor_subsys); |
| 20 | } |