There has been a popping sound every time I start playing audio which seems to be caused by snd_hda_intel power_save being enabled.
cat /sys/module/snd_hda_intel/parameters/power_save
By default this returns 10. If I set it to 0 manually using something like
echo "0" | sudo tee /sys/module/snd_hda_intel/parameters/power_save
the popping sound stops. Obviously I want this set to 0 automatically though. However making a .conf file in /etc/modprobe.d with
options snd_hda_intel power_save=0
inside it, running dracut -f and rebooting doesn’t actually seem do anything since power_save is still set to the default value of 10. I’ve also tried doing
sudo grubby --update-kernel='ALL' --args='snd_hda_intel.power_save=0'
according to Speakers popping, how to make power save options permanent? - #3 by Espionage724 however that hasn’t worked either.