summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/lpci
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/lpci')
-rw-r--r--src/devices/bus/lpci/i82439tx.cpp4
-rw-r--r--src/devices/bus/lpci/i82439tx.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/lpci/i82439tx.cpp b/src/devices/bus/lpci/i82439tx.cpp
index c6b5c74aefe..046f600a78e 100644
--- a/src/devices/bus/lpci/i82439tx.cpp
+++ b/src/devices/bus/lpci/i82439tx.cpp
@@ -15,11 +15,11 @@
IMPLEMENTATION
***************************************************************************/
-DEFINE_DEVICE_TYPE(I82439TX, i82439tx_device, "i82439tx", "Intel 82439TX")
+DEFINE_DEVICE_TYPE(I82439TX_LEGACY, i82439tx_device, "i82439tx_legacy", "Intel 82439TX")
i82439tx_device::i82439tx_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : northbridge_device(mconfig, I82439TX, tag, owner, clock),
+ : northbridge_device(mconfig, I82439TX_LEGACY, tag, owner, clock),
pci_device_interface(mconfig, *this),
m_cpu_tag(nullptr),
m_region_tag(nullptr),
diff --git a/src/devices/bus/lpci/i82439tx.h b/src/devices/bus/lpci/i82439tx.h
index 8b251c6d60b..395d4142559 100644
--- a/src/devices/bus/lpci/i82439tx.h
+++ b/src/devices/bus/lpci/i82439tx.h
@@ -74,6 +74,6 @@ private:
};
// device type definition
-DECLARE_DEVICE_TYPE(I82439TX, i82439tx_device)
+DECLARE_DEVICE_TYPE(I82439TX_LEGACY, i82439tx_device)
#endif // MAME_BUS_LPCI_I82439TX_H