repo.or.cz
/
kvm-userspace.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kvm: qemu: fix pci_enable_capabilities to set the CAP feature in pci::status
[kvm-userspace.git]
/
kernel
/
unifdef.h
blob
6fc7be082f3e6551a2e306799f2e046182d58527
1
#ifndef KVM_UNIFDEF_H
2
#define KVM_UNIFDEF_H
3
4
#ifdef __i386__
5
#ifndef CONFIG_X86_32
6
#define CONFIG_X86_32 1
7
#endif
8
#endif
9
10
#ifdef __x86_64__
11
#ifndef CONFIG_X86_64
12
#define CONFIG_X86_64 1
13
#endif
14
#endif
15
16
#if defined(__i386__) || defined (__x86_64__)
17
#ifndef CONFIG_X86
18
#define CONFIG_X86 1
19
#endif
20
#endif
21
22
#ifdef __ia64__
23
#ifndef CONFIG_IA64
24
#define CONFIG_IA64 1
25
#endif
26
#endif
27
28
#ifdef __PPC__
29
#ifndef CONFIG_PPC
30
#define CONFIG_PPC 1
31
#endif
32
#endif
33
34
#ifdef __s390__
35
#ifndef CONFIG_S390
36
#define CONFIG_S390 1
37
#endif
38
#endif
39
40
#endif