diff options
Diffstat (limited to 'drivers/kvm/kvm.h')
-rw-r--r-- | drivers/kvm/kvm.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/kvm/kvm.h b/drivers/kvm/kvm.h index a1b7d1c00bde..0d3555bf5333 100644 --- a/drivers/kvm/kvm.h +++ b/drivers/kvm/kvm.h | |||
@@ -288,11 +288,6 @@ static inline int irqchip_in_kernel(struct kvm *kvm) | |||
288 | return pic_irqchip(kvm) != NULL; | 288 | return pic_irqchip(kvm) != NULL; |
289 | } | 289 | } |
290 | 290 | ||
291 | struct descriptor_table { | ||
292 | u16 limit; | ||
293 | unsigned long base; | ||
294 | } __attribute__((packed)); | ||
295 | |||
296 | /* The guest did something we don't support. */ | 291 | /* The guest did something we don't support. */ |
297 | #define pr_unimpl(vcpu, fmt, ...) \ | 292 | #define pr_unimpl(vcpu, fmt, ...) \ |
298 | do { \ | 293 | do { \ |
@@ -457,4 +452,8 @@ struct kvm_stats_debugfs_item { | |||
457 | }; | 452 | }; |
458 | extern struct kvm_stats_debugfs_item debugfs_entries[]; | 453 | extern struct kvm_stats_debugfs_item debugfs_entries[]; |
459 | 454 | ||
455 | #if defined(CONFIG_X86) | ||
456 | #include "x86.h" | ||
457 | #endif | ||
458 | |||
460 | #endif | 459 | #endif |