tests: Fixes test-io-channel-file by mask only owner file state mask bits
[qemu/ar7.git] / include / hw / kvm / clock.h
blob81c66b2302076fe657509033d0455060cda9fba6
1 /*
2 * QEMU KVM support, paravirtual clock device
4 * Copyright (C) 2011 Siemens AG
6 * Authors:
7 * Jan Kiszka <jan.kiszka@siemens.com>
9 * This work is licensed under the terms of the GNU GPL version 2.
10 * See the COPYING file in the top-level directory.
13 #ifndef HW_KVM_CLOCK_H
14 #define HW_KVM_CLOCK_H
16 #ifdef CONFIG_KVM
18 void kvmclock_create(void);
20 #else /* CONFIG_KVM */
22 static inline void kvmclock_create(void)
26 #endif /* !CONFIG_KVM */
28 #endif