summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/machine/pci.c')
-rw-r--r--src/emu/machine/pci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/pci.c b/src/emu/machine/pci.c
index 6917d4324c5..efdcf64e19c 100644
--- a/src/emu/machine/pci.c
+++ b/src/emu/machine/pci.c
@@ -72,7 +72,7 @@
#include "emu.h"
#include "machine/pci.h"
-#define LOG_PCI 0
+#define LOG_PCI 0
//**************************************************************************
// GLOBAL VARIABLES
@@ -88,7 +88,7 @@ const device_type PCI_BUS_LEGACY = &device_creator<pci_bus_legacy_device>;
// pci_bus_legacy_device - constructor
//-------------------------------------------------
pci_bus_legacy_device::pci_bus_legacy_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, PCI_BUS, "PCI Bus", tag, owner, clock),
+ device_t(mconfig, PCI_BUS, "PCI Bus", tag, owner, clock),
m_father(NULL)
{
for (int i = 0; i < ARRAY_LENGTH(m_devtag); i++) {
@@ -305,7 +305,7 @@ const device_type PCI_BUS = &device_creator<pci_bus_device>;
// pci_bus_device - constructor
//-------------------------------------------------
pci_bus_device::pci_bus_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- device_t(mconfig, PCI_BUS, "PCI Bus", tag, owner, clock),
+ device_t(mconfig, PCI_BUS, "PCI Bus", tag, owner, clock),
m_father(NULL)
{
for (int i = 0; i < ARRAY_LENGTH(m_devtag); i++) {