Loading include/sound/emu10k1.h +3 −0 Original line number Diff line number Diff line Loading @@ -1501,6 +1501,9 @@ struct snd_emu10k1_pcm_mixer { #define snd_emu10k1_compose_audigy_fxrt2(route) \ ((unsigned int)route[4] | ((unsigned int)route[5] << 8) | ((unsigned int)route[6] << 16) | ((unsigned int)route[7] << 24)) #define snd_emu10k1_compose_audigy_sendamounts(vol) \ (((unsigned int)vol[4] << 24) | ((unsigned int)vol[5] << 16) | ((unsigned int)vol[6] << 8) | (unsigned int)vol[7]) struct snd_emu10k1_memblk { struct snd_util_memblk mem; /* private part */ Loading sound/pci/emu10k1/emumixer.c +2 −5 Original line number Diff line number Diff line Loading @@ -1196,11 +1196,8 @@ static void update_emu10k1_send_volume(struct snd_emu10k1 *emu, int voice, unsig snd_emu10k1_ptr_write(emu, PSST_FXSENDAMOUNT_C, voice, volume[2]); snd_emu10k1_ptr_write(emu, DSL_FXSENDAMOUNT_D, voice, volume[3]); if (emu->audigy) { unsigned int val = ((unsigned int)volume[4] << 24) | ((unsigned int)volume[5] << 16) | ((unsigned int)volume[6] << 8) | (unsigned int)volume[7]; snd_emu10k1_ptr_write(emu, A_SENDAMOUNTS, voice, val); snd_emu10k1_ptr_write(emu, A_SENDAMOUNTS, voice, snd_emu10k1_compose_audigy_sendamounts(volume)); } } Loading sound/pci/emu10k1/emupcm.c +1 −4 Original line number Diff line number Diff line Loading @@ -316,10 +316,7 @@ static void snd_emu10k1_pcm_init_voice(struct snd_emu10k1 *emu, snd_emu10k1_ptr_write(emu, A_FXRT2, voice, snd_emu10k1_compose_audigy_fxrt2(send_routing)); snd_emu10k1_ptr_write(emu, A_SENDAMOUNTS, voice, ((unsigned int)send_amount[4] << 24) | ((unsigned int)send_amount[5] << 16) | ((unsigned int)send_amount[6] << 8) | (unsigned int)send_amount[7]); snd_emu10k1_compose_audigy_sendamounts(send_amount)); } else snd_emu10k1_ptr_write(emu, FXRT, voice, snd_emu10k1_compose_send_routing(send_routing)); Loading Loading
include/sound/emu10k1.h +3 −0 Original line number Diff line number Diff line Loading @@ -1501,6 +1501,9 @@ struct snd_emu10k1_pcm_mixer { #define snd_emu10k1_compose_audigy_fxrt2(route) \ ((unsigned int)route[4] | ((unsigned int)route[5] << 8) | ((unsigned int)route[6] << 16) | ((unsigned int)route[7] << 24)) #define snd_emu10k1_compose_audigy_sendamounts(vol) \ (((unsigned int)vol[4] << 24) | ((unsigned int)vol[5] << 16) | ((unsigned int)vol[6] << 8) | (unsigned int)vol[7]) struct snd_emu10k1_memblk { struct snd_util_memblk mem; /* private part */ Loading
sound/pci/emu10k1/emumixer.c +2 −5 Original line number Diff line number Diff line Loading @@ -1196,11 +1196,8 @@ static void update_emu10k1_send_volume(struct snd_emu10k1 *emu, int voice, unsig snd_emu10k1_ptr_write(emu, PSST_FXSENDAMOUNT_C, voice, volume[2]); snd_emu10k1_ptr_write(emu, DSL_FXSENDAMOUNT_D, voice, volume[3]); if (emu->audigy) { unsigned int val = ((unsigned int)volume[4] << 24) | ((unsigned int)volume[5] << 16) | ((unsigned int)volume[6] << 8) | (unsigned int)volume[7]; snd_emu10k1_ptr_write(emu, A_SENDAMOUNTS, voice, val); snd_emu10k1_ptr_write(emu, A_SENDAMOUNTS, voice, snd_emu10k1_compose_audigy_sendamounts(volume)); } } Loading
sound/pci/emu10k1/emupcm.c +1 −4 Original line number Diff line number Diff line Loading @@ -316,10 +316,7 @@ static void snd_emu10k1_pcm_init_voice(struct snd_emu10k1 *emu, snd_emu10k1_ptr_write(emu, A_FXRT2, voice, snd_emu10k1_compose_audigy_fxrt2(send_routing)); snd_emu10k1_ptr_write(emu, A_SENDAMOUNTS, voice, ((unsigned int)send_amount[4] << 24) | ((unsigned int)send_amount[5] << 16) | ((unsigned int)send_amount[6] << 8) | (unsigned int)send_amount[7]); snd_emu10k1_compose_audigy_sendamounts(send_amount)); } else snd_emu10k1_ptr_write(emu, FXRT, voice, snd_emu10k1_compose_send_routing(send_routing)); Loading