summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pci9050.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/pci9050.h')
-rw-r--r--src/devices/machine/pci9050.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/pci9050.h b/src/devices/machine/pci9050.h
index d3915ea10d8..fe42ea4fa80 100644
--- a/src/devices/machine/pci9050.h
+++ b/src/devices/machine/pci9050.h
@@ -19,10 +19,10 @@
downcast<pci9050_device *>(device)->set_map(id, address_map_constructor(&map, #map, this), this);
#define MCFG_PCI9050_USER_INPUT_CALLBACK(_write) \
- devcb = &downcast<pci9050_device &>(*device).set_user_input_callback(DEVCB_##_write);
+ downcast<pci9050_device &>(*device).set_user_input_callback(DEVCB_##_write);
#define MCFG_PCI9050_USER_OUTPUT_CALLBACK(_read) \
- devcb = &downcast<pci9050_device &>(*device).set_user_output_callback(DEVCB_##_read);
+ downcast<pci9050_device &>(*device).set_user_output_callback(DEVCB_##_read);
class pci9050_device : public pci_device
{