diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2012-06-22 12:30:58 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-07-02 10:09:49 +0100 |
commit | 72aaa6cec44568a8a09f9e233387024dd2807823 (patch) | |
tree | 90bc64d68c2fee5db79e1c4fe3f052bfc5e1134c /cpu-common.h | |
parent | 71ea2e016131a9fcde6f1ffd3e0e34a64c21f593 (diff) | |
download | qemu-72aaa6cec44568a8a09f9e233387024dd2807823.tar.gz qemu-72aaa6cec44568a8a09f9e233387024dd2807823.tar.bz2 qemu-72aaa6cec44568a8a09f9e233387024dd2807823.zip |
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 <peter.maydell@linaro.org>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'cpu-common.h')
-rw-r--r-- | cpu-common.h | 2 |
1 files changed, 0 insertions, 2 deletions
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" |