|
@@ -721,9 +721,6 @@ void snd_opl3_note_off(void *p, int note, int vel,
|
|
|
*/
|
|
|
void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan)
|
|
|
{
|
|
|
- struct snd_opl3 *opl3;
|
|
|
-
|
|
|
- opl3 = p;
|
|
|
#ifdef DEBUG_MIDI
|
|
|
snd_printk(KERN_DEBUG "Key pressure, ch#: %i, inst#: %i\n",
|
|
|
chan->number, chan->midi_program);
|
|
@@ -735,9 +732,6 @@ void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *cha
|
|
|
*/
|
|
|
void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan)
|
|
|
{
|
|
|
- struct snd_opl3 *opl3;
|
|
|
-
|
|
|
- opl3 = p;
|
|
|
#ifdef DEBUG_MIDI
|
|
|
snd_printk(KERN_DEBUG "Terminate note, ch#: %i, inst#: %i\n",
|
|
|
chan->number, chan->midi_program);
|
|
@@ -861,9 +855,6 @@ void snd_opl3_control(void *p, int type, struct snd_midi_channel *chan)
|
|
|
void snd_opl3_nrpn(void *p, struct snd_midi_channel *chan,
|
|
|
struct snd_midi_channel_set *chset)
|
|
|
{
|
|
|
- struct snd_opl3 *opl3;
|
|
|
-
|
|
|
- opl3 = p;
|
|
|
#ifdef DEBUG_MIDI
|
|
|
snd_printk(KERN_DEBUG "NRPN, ch#: %i, inst#: %i\n",
|
|
|
chan->number, chan->midi_program);
|
|
@@ -876,9 +867,6 @@ void snd_opl3_nrpn(void *p, struct snd_midi_channel *chan,
|
|
|
void snd_opl3_sysex(void *p, unsigned char *buf, int len,
|
|
|
int parsed, struct snd_midi_channel_set *chset)
|
|
|
{
|
|
|
- struct snd_opl3 *opl3;
|
|
|
-
|
|
|
- opl3 = p;
|
|
|
#ifdef DEBUG_MIDI
|
|
|
snd_printk(KERN_DEBUG "SYSEX\n");
|
|
|
#endif
|