New comment by LinArcX on void-packages repository https://github.com/void-linux/void-packages/issues/45029#issuecomment-1675912418 Comment: this is the log of dmesg on `6.1.30_1`: ``` ↳ sudo dmesg | grep -i 'audio\|sound\|module_name' [ 11.198875] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client [ 11.293797] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VB: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker [ 11.293811] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 11.293816] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) [ 11.293820] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0 [ 11.293823] snd_hda_codec_realtek hdaudioC0D0: inputs: [ 11.293825] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x19 [ 11.293829] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18 [ 11.300573] hdaudio hdaudioC1D0: no AFG or MFG node found [ 11.300608] hdaudio hdaudioC1D1: no AFG or MFG node found [ 11.300631] hdaudio hdaudioC1D2: no AFG or MFG node found [ 11.300653] hdaudio hdaudioC1D3: no AFG or MFG node found [ 11.300675] hdaudio hdaudioC1D4: no AFG or MFG node found [ 11.300697] hdaudio hdaudioC1D5: no AFG or MFG node found [ 11.300719] hdaudio hdaudioC1D6: no AFG or MFG node found [ 11.300741] hdaudio hdaudioC1D7: no AFG or MFG node found [ 11.531032] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input22 [ 11.531151] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input23 [ 11.531272] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input25 ``` If i boot with higher vresions of kernel, i will stuck at the first line, and other lines won't print. meaning that something wrong with one of my sound modules. here are the list of all my sound modules: ``` ↳ lsmod | grep snd snd_hda_codec_hdmi 77824 0 snd_hda_codec_realtek 147456 0 snd_hda_codec_generic 90112 1 snd_hda_codec_realtek snd_intel_sdw_acpi 20480 0 snd_hda_codec 143360 3 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_codec_realtek snd_hda_core 94208 4 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_codec,snd_hda_codec_realtek snd_hwdep 16384 1 snd_hda_codec snd_pcm 135168 3 snd_hda_codec_hdmi,snd_hda_codec,snd_hda_core ledtrig_audio 16384 2 snd_hda_codec_generic,asus_wmi snd_seq 90112 0 snd_seq_device 16384 1 snd_seq snd_timer 45056 2 snd_seq,snd_pcm snd 102400 9 snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_codec,snd_hda_codec_realtek,snd_timer,snd_pcm soundcore 16384 1 snd ``` maybe `snd_hda_codec_realtek` is the root of issue? i still don't know.