Message ID | 13b9e27d-ccc4-24a1-5f99-3c120430af38@suse.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | x86: reduce include dependencies | expand |
--- a/xen/include/asm-x86/hvm/vpic.h +++ b/xen/include/asm-x86/hvm/vpic.h @@ -27,7 +27,8 @@ #ifndef __ASM_X86_HVM_VPIC_H__ #define __ASM_X86_HVM_VPIC_H__ -#include <public/hvm/save.h> +struct domain; +struct vcpu; void vpic_irq_positive_edge(struct domain *d, int irq); void vpic_irq_negative_edge(struct domain *d, int irq);
Drop an #include not needed by the header itself. Signed-off-by: Jan Beulich <jbeulich@suse.com>