]> git.proxmox.com Git - qemu.git/blame - hw/kvmclock.h
slirp: Replace m_freem with m_free
[qemu.git] / hw / kvmclock.h
CommitLineData
0ec329da
JK
1/*
2 * QEMU KVM support, paravirtual clock device
3 *
4 * Copyright (C) 2011 Siemens AG
5 *
6 * Authors:
7 * Jan Kiszka <jan.kiszka@siemens.com>
8 *
9 * This work is licensed under the terms of the GNU GPL version 2.
10 * See the COPYING file in the top-level directory.
11 *
12 */
13
af2be207
JK
14#ifdef CONFIG_KVM
15
0ec329da 16void kvmclock_create(void);
af2be207
JK
17
18#else /* CONFIG_KVM */
19
20static inline void kvmclock_create(void)
21{
22}
23
24#endif /* !CONFIG_KVM */