OSDN Git Service

audio: UpdateHandler is not used anymore
authorJuan Quintela <quintela@redhat.com>
Tue, 25 Apr 2017 22:37:36 +0000 (00:37 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Thu, 4 May 2017 07:16:05 +0000 (09:16 +0200)
Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-id: 20170425223739.6703-24-quintela@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/audio/fmopl.c
hw/audio/fmopl.h

index 5b8a884..99d09c5 100644 (file)
@@ -1147,7 +1147,6 @@ int OPLWrite(FM_OPL *OPL,int a,int v)
        }
        else
        {       /* data port */
-               if(OPL->UpdateHandler) OPL->UpdateHandler(OPL->UpdateParam,0);
 #ifdef OPL_OUTPUT_LOG
        if(opl_dbg_fp)
        {
@@ -1197,7 +1196,6 @@ int OPLTimerOver(FM_OPL *OPL,int c)
                if( OPL->mode & 0x80 )
                {       /* CSM mode total level latch and auto key on */
                        int ch;
-                       if(OPL->UpdateHandler) OPL->UpdateHandler(OPL->UpdateParam,0);
                        for(ch=0;ch<9;ch++)
                                CSMKeyControll( &OPL->P_CH[ch] );
                }
index b1641f5..8410275 100644 (file)
@@ -92,8 +92,6 @@ typedef struct fm_opl_f {
        /* external event callback handler */
        OPL_TIMERHANDLER  TimerHandler;         /* TIMER handler   */
        int TimerParam;                                         /* TIMER parameter */
-       OPL_UPDATEHANDLER UpdateHandler;        /* stream update handler   */
-       int UpdateParam;                                        /* stream update parameter */
 } FM_OPL;
 
 /* ---------- Generic interface section ---------- */