summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/es8712.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/es8712.h')
-rw-r--r--src/devices/sound/es8712.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/es8712.h b/src/devices/sound/es8712.h
index 796167331ed..61f98068cde 100644
--- a/src/devices/sound/es8712.h
+++ b/src/devices/sound/es8712.h
@@ -19,9 +19,9 @@
#define MCFG_ES8712_REPLACE(_tag, _clock) \
MCFG_DEVICE_REPLACE(_tag, ES8712, _clock)
#define MCFG_ES8712_RESET_HANDLER(_devcb) \
- devcb = &downcast<es8712_device &>(*device).set_reset_handler(DEVCB_##_devcb);
+ downcast<es8712_device &>(*device).set_reset_handler(DEVCB_##_devcb);
#define MCFG_ES8712_MSM_WRITE_CALLBACK(_devcb) \
- devcb = &downcast<es8712_device &>(*device).set_msm_write_callback(DEVCB_##_devcb);
+ downcast<es8712_device &>(*device).set_msm_write_callback(DEVCB_##_devcb);
#define MCFG_ES8712_MSM_TAG(_msmtag) \
downcast<es8712_device &>(*device).set_msm_tag(_msmtag);