From: Peter Maydell Date: Fri, 22 Jun 2012 11:30:58 +0000 (+0100) Subject: cpu-common.h: Remove unnecessary guard on including targphys.h X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=72aaa6cec44568a8a09f9e233387024dd2807823;p=qemu.git cpu-common.h: Remove unnecessary guard on including targphys.h There's no need to make the include of targphys.h conditional on whether TARGET_PHYS_ADDR_BITS is defined, because targphys.h itself checks that and does nothing if it isn't. Signed-off-by: Peter Maydell Reviewed-by: Andreas Färber Signed-off-by: Stefan Hajnoczi --- diff --git a/cpu-common.h b/cpu-common.h index 1fe3280701..321037fbc0 100644 --- a/cpu-common.h +++ b/cpu-common.h @@ -3,9 +3,7 @@ /* CPU interfaces that are target independent. */ -#ifdef TARGET_PHYS_ADDR_BITS #include "targphys.h" -#endif #ifndef NEED_CPU_H #include "poison.h"