Skip to content

Commit 4c6fe8c

Browse files
takaswietiwai
authored andcommitted
ALSA: dice: fix stream format for TC Electronic Konnekt Live at high sampling transfer frequency
At high sampling transfer frequency, TC Electronic Konnekt Live transfers/receives 6 audio data frames in multi bit linear audio data channel of data block in CIP payload. Current hard-coded stream format is wrong. Cc: <[email protected]> Fixes: f1f0f33 ("ALSA: dice: add parameters of stream formats for models produced by TC Electronic") Signed-off-by: Takashi Sakamoto <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent 9f079c1 commit 4c6fe8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sound/firewire/dice/dice-tcelectronic.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ static const struct dice_tc_spec konnekt_24d = {
3838
};
3939

4040
static const struct dice_tc_spec konnekt_live = {
41-
.tx_pcm_chs = {{16, 16, 16}, {0, 0, 0} },
42-
.rx_pcm_chs = {{16, 16, 16}, {0, 0, 0} },
41+
.tx_pcm_chs = {{16, 16, 6}, {0, 0, 0} },
42+
.rx_pcm_chs = {{16, 16, 6}, {0, 0, 0} },
4343
.has_midi = true,
4444
};
4545

0 commit comments

Comments
 (0)