diff options
author | 2010-12-31 21:42:55 +0000 | |
---|---|---|
committer | 2010-12-31 21:42:55 +0000 | |
commit | 3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch) | |
tree | 415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/machine/pci.h | |
parent | 2ca38fad3e665d2e4e0212263a07819d36f4ba7f (diff) |
running_device -> device_t
They both already existed. No sense in having two names for the
same object type.
Diffstat (limited to 'src/emu/machine/pci.h')
-rw-r--r-- | src/emu/machine/pci.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/machine/pci.h b/src/emu/machine/pci.h index 6ca63042024..b88e3f1aa1f 100644 --- a/src/emu/machine/pci.h +++ b/src/emu/machine/pci.h @@ -16,8 +16,8 @@ TYPE DEFINITIONS ***************************************************************************/ -typedef UINT32 (*pci_read_func)(running_device *pcibus, running_device *device, int function, int reg, UINT32 mem_mask); -typedef void (*pci_write_func)(running_device *pcibus, running_device *device, int function, int reg, UINT32 data, UINT32 mem_mask); +typedef UINT32 (*pci_read_func)(device_t *pcibus, device_t *device, int function, int reg, UINT32 mem_mask); +typedef void (*pci_write_func)(device_t *pcibus, device_t *device, int function, int reg, UINT32 data, UINT32 mem_mask); typedef struct _pci_device_entry pci_device_entry; struct _pci_device_entry |