mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Rename target_phys_addr_t to hwaddr
target_phys_addr_t is unwieldly, violates the C standard (_t suffixes are reserved) and its purpose doesn't match the name (most target_phys_addr_t addresses are not target specific). Replace it with a finger-friendly, standards conformant hwaddr. Outstanding patchsets can be fixed up with the command git rebase -i --exec 'find -name "*.[ch]" | xargs s/target_phys_addr_t/hwaddr/g' origin Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
50d2b4d93f
commit
a8170e5e97
383 changed files with 2240 additions and 2240 deletions
20
hw/sysbus.c
20
hw/sysbus.c
|
@ -48,7 +48,7 @@ void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq)
|
|||
}
|
||||
}
|
||||
|
||||
void sysbus_mmio_map(SysBusDevice *dev, int n, target_phys_addr_t addr)
|
||||
void sysbus_mmio_map(SysBusDevice *dev, int n, hwaddr addr)
|
||||
{
|
||||
assert(n >= 0 && n < dev->num_mmio);
|
||||
|
||||
|
@ -56,7 +56,7 @@ void sysbus_mmio_map(SysBusDevice *dev, int n, target_phys_addr_t addr)
|
|||
/* ??? region already mapped here. */
|
||||
return;
|
||||
}
|
||||
if (dev->mmio[n].addr != (target_phys_addr_t)-1) {
|
||||
if (dev->mmio[n].addr != (hwaddr)-1) {
|
||||
/* Unregister previous mapping. */
|
||||
memory_region_del_subregion(get_system_memory(), dev->mmio[n].memory);
|
||||
}
|
||||
|
@ -122,7 +122,7 @@ static int sysbus_device_init(DeviceState *dev)
|
|||
}
|
||||
|
||||
DeviceState *sysbus_create_varargs(const char *name,
|
||||
target_phys_addr_t addr, ...)
|
||||
hwaddr addr, ...)
|
||||
{
|
||||
DeviceState *dev;
|
||||
SysBusDevice *s;
|
||||
|
@ -133,7 +133,7 @@ DeviceState *sysbus_create_varargs(const char *name,
|
|||
dev = qdev_create(NULL, name);
|
||||
s = sysbus_from_qdev(dev);
|
||||
qdev_init_nofail(dev);
|
||||
if (addr != (target_phys_addr_t)-1) {
|
||||
if (addr != (hwaddr)-1) {
|
||||
sysbus_mmio_map(s, 0, addr);
|
||||
}
|
||||
va_start(va, addr);
|
||||
|
@ -151,7 +151,7 @@ DeviceState *sysbus_create_varargs(const char *name,
|
|||
}
|
||||
|
||||
DeviceState *sysbus_try_create_varargs(const char *name,
|
||||
target_phys_addr_t addr, ...)
|
||||
hwaddr addr, ...)
|
||||
{
|
||||
DeviceState *dev;
|
||||
SysBusDevice *s;
|
||||
|
@ -165,7 +165,7 @@ DeviceState *sysbus_try_create_varargs(const char *name,
|
|||
}
|
||||
s = sysbus_from_qdev(dev);
|
||||
qdev_init_nofail(dev);
|
||||
if (addr != (target_phys_addr_t)-1) {
|
||||
if (addr != (hwaddr)-1) {
|
||||
sysbus_mmio_map(s, 0, addr);
|
||||
}
|
||||
va_start(va, addr);
|
||||
|
@ -185,7 +185,7 @@ DeviceState *sysbus_try_create_varargs(const char *name,
|
|||
static void sysbus_dev_print(Monitor *mon, DeviceState *dev, int indent)
|
||||
{
|
||||
SysBusDevice *s = sysbus_from_qdev(dev);
|
||||
target_phys_addr_t size;
|
||||
hwaddr size;
|
||||
int i;
|
||||
|
||||
monitor_printf(mon, "%*sirq %d\n", indent, "", s->num_irq);
|
||||
|
@ -214,13 +214,13 @@ static char *sysbus_get_fw_dev_path(DeviceState *dev)
|
|||
return g_strdup(path);
|
||||
}
|
||||
|
||||
void sysbus_add_memory(SysBusDevice *dev, target_phys_addr_t addr,
|
||||
void sysbus_add_memory(SysBusDevice *dev, hwaddr addr,
|
||||
MemoryRegion *mem)
|
||||
{
|
||||
memory_region_add_subregion(get_system_memory(), addr, mem);
|
||||
}
|
||||
|
||||
void sysbus_add_memory_overlap(SysBusDevice *dev, target_phys_addr_t addr,
|
||||
void sysbus_add_memory_overlap(SysBusDevice *dev, hwaddr addr,
|
||||
MemoryRegion *mem, unsigned priority)
|
||||
{
|
||||
memory_region_add_subregion_overlap(get_system_memory(), addr, mem,
|
||||
|
@ -232,7 +232,7 @@ void sysbus_del_memory(SysBusDevice *dev, MemoryRegion *mem)
|
|||
memory_region_del_subregion(get_system_memory(), mem);
|
||||
}
|
||||
|
||||
void sysbus_add_io(SysBusDevice *dev, target_phys_addr_t addr,
|
||||
void sysbus_add_io(SysBusDevice *dev, hwaddr addr,
|
||||
MemoryRegion *mem)
|
||||
{
|
||||
memory_region_add_subregion(get_system_io(), addr, mem);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue