xref: /openbsd-src/sys/dev/pci/drm/include/asm/hypervisor.h (revision 4e1ee0786f11cc571bd0be17d38e46f635c719fc)
1 /* Public domain. */
2 
3 #ifndef _ASM_HYPERVISOR_H
4 #define _ASM_HYPERVISOR_H
5 
6 #if defined(__i386__) || defined(__amd64__)
7 
8 #define X86_HYPER_NATIVE 1
9 
10 static inline bool
11 hypervisor_is_type(int type)
12 {
13 	return (type == X86_HYPER_NATIVE);
14 }
15 
16 #endif
17 
18 #endif
19