summaryrefslogtreecommitdiffstats
path: root/src/devices/machine/smioc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/smioc.cpp')
-rw-r--r--src/devices/machine/smioc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/smioc.cpp b/src/devices/machine/smioc.cpp
index e58673a0bb0..cd871e3d0a8 100644
--- a/src/devices/machine/smioc.cpp
+++ b/src/devices/machine/smioc.cpp
@@ -214,8 +214,8 @@ smioc_device::smioc_device(const machine_config &mconfig, const char *tag, devic
void smioc_device::device_start()
{
- m_dma_timer = timer_alloc(0, nullptr);
- m_451_timer = timer_alloc(1, nullptr);
+ m_dma_timer = timer_alloc(0);
+ m_451_timer = timer_alloc(1);
/* Resolve callbacks */
m_m68k_r_cb.resolve_safe(0);
@@ -246,7 +246,7 @@ void smioc_device::SoftReset()
}
-void smioc_device::device_timer(emu_timer &timer, device_timer_id tid, int param, void *ptr)
+void smioc_device::device_timer(emu_timer &timer, device_timer_id tid, int param)
{
switch (tid)
{