Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 135d1535 authored by Adrian Knoth's avatar Adrian Knoth Committed by Takashi Iwai
Browse files

ALSA: hdspm - Allow for 8192 period size on RME MADI and AES cards



Older RME cards like MADI and AES support period sizes of 8192 samples.
The original hdspm driver already featured this value, apparently, it
was lost during the rewrite.

Signed-off-by: default avatarAdrian Knoth <adi@drcomp.erfurt.thur.de>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent da6094ea
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -5673,7 +5673,7 @@ static int snd_hdspm_prepare(struct snd_pcm_substream *substream)
}
}


static unsigned int period_sizes_old[] = {
static unsigned int period_sizes_old[] = {
	64, 128, 256, 512, 1024, 2048, 4096
	64, 128, 256, 512, 1024, 2048, 4096, 8192
};
};


static unsigned int period_sizes_new[] = {
static unsigned int period_sizes_new[] = {