aboutsummaryrefslogtreecommitdiff
path: root/hw/kvmclock.h
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2011-10-15 10:01:27 +0200
committerJan Kiszka <jan.kiszka@siemens.com>2012-01-19 12:14:39 +0100
commit3b9a6ee50e88c47f64486b6b143b1363fa5c327c (patch)
treeede059c4021edebc53d368922d53118a65d685d9 /hw/kvmclock.h
parent60ba3cc231d6bc7b802ad4fe6b6fc159ecb112e2 (diff)
kvm: Move kvmclock into hw/kvm folder
More KVM-specific devices will come, so let's start with moving the kvmclock into a dedicated folder. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Diffstat (limited to 'hw/kvmclock.h')
-rw-r--r--hw/kvmclock.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/hw/kvmclock.h b/hw/kvmclock.h
deleted file mode 100644
index 252ea13461..0000000000
--- a/hw/kvmclock.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * QEMU KVM support, paravirtual clock device
- *
- * Copyright (C) 2011 Siemens AG
- *
- * Authors:
- * Jan Kiszka <jan.kiszka@siemens.com>
- *
- * This work is licensed under the terms of the GNU GPL version 2.
- * See the COPYING file in the top-level directory.
- *
- */
-
-#ifdef CONFIG_KVM
-
-void kvmclock_create(void);
-
-#else /* CONFIG_KVM */
-
-static inline void kvmclock_create(void)
-{
-}
-
-#endif /* !CONFIG_KVM */