From: Peter Maydell Date: Tue, 3 Sep 2024 16:07:12 +0000 (+0100) Subject: hw/timer/pxa2xx_timer: Remove use of pxa.h header X-Git-Tag: v9.2.0-rc0~68^2~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3f2797a76e1787f378cc8e6429f8837aa3358066;p=thirdparty%2Fqemu.git hw/timer/pxa2xx_timer: Remove use of pxa.h header pxa2xx_timer includes pxa.h, but it doesn't actually make use of any of the #defines, function prototypes or structs defined there. Remove the unnecessary include (we will shortly be removing the whole header file). Signed-off-by: Peter Maydell Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé Message-id: 20240903160751.4100218-15-peter.maydell@linaro.org --- diff --git a/hw/timer/pxa2xx_timer.c b/hw/timer/pxa2xx_timer.c index 6479ab1a8b3..d1a3ecac2b5 100644 --- a/hw/timer/pxa2xx_timer.c +++ b/hw/timer/pxa2xx_timer.c @@ -12,7 +12,6 @@ #include "hw/qdev-properties.h" #include "qemu/timer.h" #include "sysemu/runstate.h" -#include "hw/arm/pxa.h" #include "hw/sysbus.h" #include "migration/vmstate.h" #include "qemu/log.h"