From fd2682e352544ad52b3bc41c57aff2f4952daf94 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Thu, 17 Mar 2022 19:32:49 -0300 Subject: [PATCH] CMI8x38: Disable 128 KHz mode as that's not for our chips --- src/sound/snd_cmi8x38.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sound/snd_cmi8x38.c b/src/sound/snd_cmi8x38.c index 2b690c627..e24f70970 100644 --- a/src/sound/snd_cmi8x38.c +++ b/src/sound/snd_cmi8x38.c @@ -1263,9 +1263,11 @@ cmi8x38_speed_changed(void *priv) case 0x02: freq = 96000.0; break; +#if 0 case 0x03: freq = 128000.0; break; +#endif default: freq = freqs[freqreg & 0x07]; break;