audio: Remove Unused OPL_TYPE_*
authorJuan Quintela <quintela@redhat.com>
Tue, 25 Apr 2017 22:37:25 +0000 (00:37 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Thu, 4 May 2017 07:16:04 +0000 (09:16 +0200)
Since we removed the previous unused devices, they are not used anymore.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Message-id: 20170425223739.6703-13-quintela@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
hw/audio/fmopl.c
hw/audio/fmopl.h

index b1cb4b46d663797328511fbe3f8ee3bd3bc7b5db..9171001030288fa05797a98df261835de51835e9 100644 (file)
@@ -1188,28 +1188,12 @@ unsigned char OPLRead(FM_OPL *OPL,int a)
        switch(OPL->address)
        {
        case 0x05: /* KeyBoard IN */
-               if(OPL->type&OPL_TYPE_KEYBOARD)
-               {
-                       if(OPL->keyboardhandler_r)
-                               return OPL->keyboardhandler_r(OPL->keyboard_param);
-                       else {
-                               LOG(LOG_WAR,("OPL:read unmapped KEYBOARD port\n"));
-                       }
-               }
                return 0;
 #if 0
        case 0x0f: /* ADPCM-DATA  */
                return 0;
 #endif
        case 0x19: /* I/O DATA    */
-               if(OPL->type&OPL_TYPE_IO)
-               {
-                       if(OPL->porthandler_r)
-                               return OPL->porthandler_r(OPL->port_param);
-                       else {
-                               LOG(LOG_WAR,("OPL:read unmapped I/O port\n"));
-                       }
-               }
                return 0;
        case 0x1a: /* PCM-DATA    */
                return 0;
index c23628724c4a89679480aef892145584b4c7cc3e..8ef0b3e3c3994483f477066cfa199d04ac156db2 100644 (file)
@@ -12,9 +12,6 @@ typedef unsigned char (*OPL_PORTHANDLER_R)(int param);
 /* !!!!! here is private section , do not access there member direct !!!!! */
 
 #define OPL_TYPE_WAVESEL   0x01  /* waveform select    */
-#define OPL_TYPE_ADPCM     0x02  /* DELTA-T ADPCM unit */
-#define OPL_TYPE_KEYBOARD  0x04  /* keyboard interface */
-#define OPL_TYPE_IO        0x08  /* I/O port */
 
 /* Saving is necessary for member of the 'R' mark for suspend/resume */
 /* ---------- OPL one of slot  ---------- */