[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 22/26] audio: IRQHandler is not used anymore
From: |
Juan Quintela |
Subject: |
[Qemu-devel] [PATCH 22/26] audio: IRQHandler is not used anymore |
Date: |
Wed, 26 Apr 2017 00:37:35 +0200 |
Signed-off-by: Juan Quintela <address@hidden>
---
hw/audio/fmopl.c | 4 ----
hw/audio/fmopl.h | 2 --
2 files changed, 6 deletions(-)
diff --git a/hw/audio/fmopl.c b/hw/audio/fmopl.c
index 694a77b..5b8a884 100644
--- a/hw/audio/fmopl.c
+++ b/hw/audio/fmopl.c
@@ -260,8 +260,6 @@ static inline void OPL_STATUS_SET(FM_OPL *OPL,int flag)
if(OPL->status & OPL->statusmask)
{ /* IRQ on */
OPL->status |= 0x80;
- /* callback user interrupt handler (IRQ is OFF to ON) */
- if(OPL->IRQHandler) (OPL->IRQHandler)(OPL->IRQParam,1);
}
}
}
@@ -276,8 +274,6 @@ static inline void OPL_STATUS_RESET(FM_OPL *OPL,int flag)
if (!(OPL->status & OPL->statusmask) )
{
OPL->status &= 0x7f;
- /* callback user interrupt handler (IRQ is ON to OFF) */
- if(OPL->IRQHandler) (OPL->IRQHandler)(OPL->IRQParam,0);
}
}
}
diff --git a/hw/audio/fmopl.h b/hw/audio/fmopl.h
index 446de08..b1641f5 100644
--- a/hw/audio/fmopl.h
+++ b/hw/audio/fmopl.h
@@ -92,8 +92,6 @@ typedef struct fm_opl_f {
/* external event callback handler */
OPL_TIMERHANDLER TimerHandler; /* TIMER handler */
int TimerParam; /* TIMER
parameter */
- OPL_IRQHANDLER IRQHandler; /* IRQ handler */
- int IRQParam; /* IRQ
parameter */
OPL_UPDATEHANDLER UpdateHandler; /* stream update handler */
int UpdateParam; /* stream
update parameter */
} FM_OPL;
--
2.9.3
- [Qemu-devel] [PATCH 12/26] audio: Remove Unused OPL_TYPE_*, (continued)
- [Qemu-devel] [PATCH 12/26] audio: Remove Unused OPL_TYPE_*, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 13/26] audio: Remove type field, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 14/26] audio: Remove unused fields, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 15/26] audio: GUSbyte is uint8_t, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 16/26] audio: remove GUSchar, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 17/26] audio: GUSword is uint16_t, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 18/26] audio: GUSword is uint16_t, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 19/26] audio: GUSsample is int16_t, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 20/26] audio: OPLSetIRQHandler is not used anywhere, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 22/26] audio: IRQHandler is not used anymore,
Juan Quintela <=
- [Qemu-devel] [PATCH 21/26] audio: OPLSetUpdateHandler is not used anywhere, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 23/26] audio: UpdateHandler is not used anymore, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 24/26] audio: Remove unused typedefs, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 25/26] audio: un-export OPLResetChip, Juan Quintela, 2017/04/25
- [Qemu-devel] [PATCH 26/26] audio: Use ARRAY_SIZE from qemu/osdep.h, Juan Quintela, 2017/04/25
- Re: [Qemu-devel] [PATCH 00/26] Audio Cleanup, no-reply, 2017/04/25
- Re: [Qemu-devel] [PATCH 00/26] Audio Cleanup, Juan Quintela, 2017/04/26