diff options
author | Juan Quintela | 2017-04-26 00:37:33 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2017-05-04 09:16:05 +0200 |
commit | 17a1694a56298df9902ecdaf91a5dc930ed915a9 (patch) | |
tree | e98cd0366b5c32ef1d0baac9be935501d4a75b45 /hw/audio/fmopl.c | |
parent | audio: GUSsample is int16_t (diff) | |
download | qemu-17a1694a56298df9902ecdaf91a5dc930ed915a9.tar.gz qemu-17a1694a56298df9902ecdaf91a5dc930ed915a9.tar.xz qemu-17a1694a56298df9902ecdaf91a5dc930ed915a9.zip |
audio: OPLSetIRQHandler is not used anywhere
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-id: 20170425223739.6703-21-quintela@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/audio/fmopl.c')
-rw-r--r-- | hw/audio/fmopl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/audio/fmopl.c b/hw/audio/fmopl.c index 48db828a49..f91e700bf9 100644 --- a/hw/audio/fmopl.c +++ b/hw/audio/fmopl.c @@ -1141,11 +1141,6 @@ void OPLSetTimerHandler(FM_OPL *OPL,OPL_TIMERHANDLER TimerHandler,int channelOff OPL->TimerHandler = TimerHandler; OPL->TimerParam = channelOffset; } -void OPLSetIRQHandler(FM_OPL *OPL,OPL_IRQHANDLER IRQHandler,int param) -{ - OPL->IRQHandler = IRQHandler; - OPL->IRQParam = param; -} void OPLSetUpdateHandler(FM_OPL *OPL,OPL_UPDATEHANDLER UpdateHandler,int param) { OPL->UpdateHandler = UpdateHandler; |