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 /include/hw | |
parent | 19298eca060036c3697b0fd9ae77a3ba715cc9c5 (diff) | |
download | hqemu-21e5181f9552e3a876b488c77dc5cfeccff66414.zip hqemu-21e5181f9552e3a876b488c77dc5cfeccff66414.tar.gz |
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 'include/hw')
-rw-r--r-- | include/hw/qdev-addr.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/hw/qdev-addr.h b/include/hw/qdev-addr.h deleted file mode 100644 index 79708e6..0000000 --- a/include/hw/qdev-addr.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef HW_QDEV_ADDR_H -#define HW_QDEV_ADDR_H 1 - -#define DEFINE_PROP_TADDR(_n, _s, _f, _d) \ - DEFINE_PROP_DEFAULT(_n, _s, _f, _d, qdev_prop_taddr, hwaddr) - -extern PropertyInfo qdev_prop_taddr; -void qdev_prop_set_taddr(DeviceState *dev, const char *name, hwaddr value); - -#endif |