diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2013-04-20 14:48:28 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-04-20 17:54:52 +0000 |
commit | 21e5181f9552e3a876b488c77dc5cfeccff66414 (patch) | |
tree | c5931c443b760636b720714712827dcbbb49ba59 /hw/display | |
parent | 19298eca060036c3697b0fd9ae77a3ba715cc9c5 (diff) | |
download | qemu-21e5181f9552e3a876b488c77dc5cfeccff66414.zip qemu-21e5181f9552e3a876b488c77dc5cfeccff66414.tar.gz qemu-21e5181f9552e3a876b488c77dc5cfeccff66414.tar.bz2 |
qdev: Drop taddr properties
Drop all the infrastructure for taddr properties (ie ones which
are 'hwaddr' sized). These are now unused, and any further desired
use would be rather questionable since device properties shouldn't
generally depend on a type that is conceptually variable based on
the target CPU. 32 or 64 bit integer properties should be used instead
as appropriate for the specific device.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/display')
-rw-r--r-- | hw/display/sm501.c | 1 | ||||
-rw-r--r-- | hw/display/tcx.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/hw/display/sm501.c b/hw/display/sm501.c index fc5e539..916816f 100644 --- a/hw/display/sm501.c +++ b/hw/display/sm501.c @@ -28,7 +28,6 @@ #include "ui/console.h" #include "hw/devices.h" #include "hw/sysbus.h" -#include "hw/qdev-addr.h" #include "qemu/range.h" #include "ui/pixel_ops.h" diff --git a/hw/display/tcx.c b/hw/display/tcx.c index 77c7191..d7465c6 100644 --- a/hw/display/tcx.c +++ b/hw/display/tcx.c @@ -26,7 +26,6 @@ #include "ui/console.h" #include "ui/pixel_ops.h" #include "hw/sysbus.h" -#include "hw/qdev-addr.h" #define MAXX 1024 #define MAXY 768 |