mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -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
16
hw/sysbus.h
16
hw/sysbus.h
|
@ -9,7 +9,7 @@
|
|||
#define QDEV_MAX_IRQ 256
|
||||
|
||||
typedef struct SysBusDevice SysBusDevice;
|
||||
typedef void (*mmio_mapfunc)(SysBusDevice *dev, a_target_phys_addr addr);
|
||||
typedef void (*mmio_mapfunc)(SysBusDevice *dev, target_phys_addr_t addr);
|
||||
|
||||
struct SysBusDevice {
|
||||
DeviceState qdev;
|
||||
|
@ -18,8 +18,8 @@ struct SysBusDevice {
|
|||
qemu_irq *irqp[QDEV_MAX_IRQ];
|
||||
int num_mmio;
|
||||
struct {
|
||||
a_target_phys_addr addr;
|
||||
a_target_phys_addr size;
|
||||
target_phys_addr_t addr;
|
||||
target_phys_addr_t size;
|
||||
mmio_mapfunc cb;
|
||||
int iofunc;
|
||||
} mmio[QDEV_MAX_MMIO];
|
||||
|
@ -39,21 +39,21 @@ typedef struct {
|
|||
void sysbus_register_dev(const char *name, size_t size, sysbus_initfn init);
|
||||
void sysbus_register_withprop(SysBusDeviceInfo *info);
|
||||
void *sysbus_new(void);
|
||||
void sysbus_init_mmio(SysBusDevice *dev, a_target_phys_addr size, int iofunc);
|
||||
void sysbus_init_mmio_cb(SysBusDevice *dev, a_target_phys_addr size,
|
||||
void sysbus_init_mmio(SysBusDevice *dev, target_phys_addr_t size, int iofunc);
|
||||
void sysbus_init_mmio_cb(SysBusDevice *dev, target_phys_addr_t size,
|
||||
mmio_mapfunc cb);
|
||||
void sysbus_init_irq(SysBusDevice *dev, qemu_irq *p);
|
||||
void sysbus_pass_irq(SysBusDevice *dev, SysBusDevice *target);
|
||||
|
||||
|
||||
void sysbus_connect_irq(SysBusDevice *dev, int n, qemu_irq irq);
|
||||
void sysbus_mmio_map(SysBusDevice *dev, int n, a_target_phys_addr addr);
|
||||
void sysbus_mmio_map(SysBusDevice *dev, int n, target_phys_addr_t addr);
|
||||
|
||||
/* Legacy helper function for creating devices. */
|
||||
DeviceState *sysbus_create_varargs(const char *name,
|
||||
a_target_phys_addr addr, ...);
|
||||
target_phys_addr_t addr, ...);
|
||||
static inline DeviceState *sysbus_create_simple(const char *name,
|
||||
a_target_phys_addr addr,
|
||||
target_phys_addr_t addr,
|
||||
qemu_irq irq)
|
||||
{
|
||||
return sysbus_create_varargs(name, addr, irq, NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue