diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2014-11-25 22:52:24 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-01-16 22:50:45 +0100 |
commit | 5c697e5b46efea2c0a5da55208bc71db46698fd1 (patch) | |
tree | 65264f081f2dc54c44214a5e163be5ddaa18c7e9 /sound/firewire/fireworks | |
parent | 92cb46584e104e2f4b14a44959109ffe13524a26 (diff) | |
download | linux-5c697e5b46efea2c0a5da55208bc71db46698fd1.tar.gz linux-5c697e5b46efea2c0a5da55208bc71db46698fd1.tar.bz2 linux-5c697e5b46efea2c0a5da55208bc71db46698fd1.zip |
ALSA: firewire-lib: remove rx_blocks_for_midi quirk
There are several devices that expect to receive MIDI data only in the
first eight data blocks of a packet. If the driver restricts the data
rate to the allowed rate (as mandated by the specification, but not yet
implemented by this driver), this happens naturally. Therefore, there
is no reason to ever try to use more data packets with any device.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Reviewed-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Tested-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/fireworks')
-rw-r--r-- | sound/firewire/fireworks/fireworks_stream.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sound/firewire/fireworks/fireworks_stream.c b/sound/firewire/fireworks/fireworks_stream.c index b985fc5ebdc6..4f440e163667 100644 --- a/sound/firewire/fireworks/fireworks_stream.c +++ b/sound/firewire/fireworks/fireworks_stream.c @@ -179,11 +179,6 @@ int snd_efw_stream_init_duplex(struct snd_efw *efw) destroy_stream(efw, &efw->tx_stream); goto end; } - /* - * Fireworks ignores MIDI messages in more than first 8 data - * blocks of an received AMDTP packet. - */ - efw->rx_stream.rx_blocks_for_midi = 8; /* set IEC61883 compliant mode (actually not fully compliant...) */ err = snd_efw_command_set_tx_mode(efw, SND_EFW_TRANSPORT_MODE_IEC61883); |