Re: [PATCH] hw/intc/xics: Include missing 'cpu.h' header

2024-01-29 Thread Thomas Huth
On 29/01/2024 18.05, Philippe Mathieu-Daudé wrote: Include missing headers in order to avoid when refactoring unrelated headers: hw/intc/xics.c: In function 'icp_realize': hw/intc/xics.c:304:5: error: unknown type name 'PowerPCCPU' 304 | PowerPCCPU *cpu; | ^~

[PATCH] hw/intc/xics: Include missing 'cpu.h' header

2024-01-29 Thread Philippe Mathieu-Daudé
Include missing headers in order to avoid when refactoring unrelated headers: hw/intc/xics.c: In function 'icp_realize': hw/intc/xics.c:304:5: error: unknown type name 'PowerPCCPU' 304 | PowerPCCPU *cpu; | ^~ Signed-off-by: Philippe Mathieu-Daudé ---