mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Revert "Get rid of _t suffix"
In the very least, a change like this requires discussion on the list.
The naming convention is goofy and it causes a massive merge problem. Something
like this _must_ be presented on the list first so people can provide input
and cope with it.
This reverts commit 99a0949b72
.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
99a0949b72
commit
c227f0995e
316 changed files with 3332 additions and 3325 deletions
|
@ -6,7 +6,7 @@
|
|||
|
||||
static int parse_taddr(DeviceState *dev, Property *prop, const char *str)
|
||||
{
|
||||
a_target_phys_addr *ptr = qdev_get_prop_ptr(dev, prop);
|
||||
target_phys_addr_t *ptr = qdev_get_prop_ptr(dev, prop);
|
||||
|
||||
*ptr = strtoull(str, NULL, 16);
|
||||
return 0;
|
||||
|
@ -14,19 +14,19 @@ static int parse_taddr(DeviceState *dev, Property *prop, const char *str)
|
|||
|
||||
static int print_taddr(DeviceState *dev, Property *prop, char *dest, size_t len)
|
||||
{
|
||||
a_target_phys_addr *ptr = qdev_get_prop_ptr(dev, prop);
|
||||
target_phys_addr_t *ptr = qdev_get_prop_ptr(dev, prop);
|
||||
return snprintf(dest, len, "0x" TARGET_FMT_plx, *ptr);
|
||||
}
|
||||
|
||||
PropertyInfo qdev_prop_taddr = {
|
||||
.name = "taddr",
|
||||
.type = PROP_TYPE_TADDR,
|
||||
.size = sizeof(a_target_phys_addr),
|
||||
.size = sizeof(target_phys_addr_t),
|
||||
.parse = parse_taddr,
|
||||
.print = print_taddr,
|
||||
};
|
||||
|
||||
void qdev_prop_set_taddr(DeviceState *dev, const char *name, a_target_phys_addr value)
|
||||
void qdev_prop_set_taddr(DeviceState *dev, const char *name, target_phys_addr_t value)
|
||||
{
|
||||
qdev_prop_set(dev, name, &value, PROP_TYPE_TADDR);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue