summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/315-6154.cpp
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2021-07-14 09:36:33 -0700
committer Aaron Giles <aaron@aarongiles.com>2021-07-14 09:36:33 -0700
commitf1a4f1360543c6175c392c12920f76adabf571a2 (patch)
tree0521903bba79a657e72888f1ca0cce962201b478 /src/mame/machine/315-6154.cpp
parent42cbd9c4375a60c93ba872c5e634482129afa259 (diff)
Move all pci_device methods to new interface class device_pci_interface. Change pci_device to be just a shell device_t that inherits from device_pci_interface.aaron-pci-cleanup
Diffstat (limited to 'src/mame/machine/315-6154.cpp')
-rw-r--r--src/mame/machine/315-6154.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/315-6154.cpp b/src/mame/machine/315-6154.cpp
index ab022103675..2dc39b6a477 100644
--- a/src/mame/machine/315-6154.cpp
+++ b/src/mame/machine/315-6154.cpp
@@ -65,7 +65,7 @@ void sega_315_6154_device::regenerate_config_mapping()
{
const int s = i >> 3;
const int o = (i & 7) << 8;
- config_space->install_device((0x800 << s) + o, ((0x800 << s) + o) | 0xff, *sub_devices[i], &pci_device::pci_config_map);
+ config_space->install_device<pci_device>((0x800 << s) + o, ((0x800 << s) + o) | 0xff, *sub_devices[i], &pci_device::pci_config_map);
}
}