Changeset 668
- Timestamp:
- Jan 29, 2021, 11:01:48 PM (5 years ago)
- Location:
- GPL/branches/uniaud32-next/alsa-kernel
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-next/alsa-kernel/core/seq/oss/seq_oss_synth.c
r629 r668 612 612 if (info->is_midi) { 613 613 struct midi_info minf; 614 snd_seq_oss_midi_make_info(dp, info->midi_mapped, &minf); 614 if (snd_seq_oss_midi_make_info(dp, info->midi_mapped, &minf)) 615 return -ENXIO; 615 616 inf->synth_type = SYNTH_TYPE_MIDI; 616 617 inf->synth_subtype = 0; -
GPL/branches/uniaud32-next/alsa-kernel/include/sound/version.h
r650 r668 1 1 /* include/version.h */ 2 #define CONFIG_SND_VERSION "5.10.1 0"2 #define CONFIG_SND_VERSION "5.10.11" 3 3 #define CONFIG_SND_DATE "" -
GPL/branches/uniaud32-next/alsa-kernel/pci/hda/hda_codec.c
r629 r668 2957 2957 } 2958 2958 2959 static int hda_codec_ suspend(struct device *dev)2959 static int hda_codec_runtime_suspend(struct device *dev) 2960 2960 { 2961 2961 struct hda_codec *codec = dev_to_hda_codec(dev); … … 2976 2976 } 2977 2977 2978 static int hda_codec_r esume(struct device *dev)2978 static int hda_codec_runtime_resume(struct device *dev) 2979 2979 { 2980 2980 struct hda_codec *codec = dev_to_hda_codec(dev); … … 2991 2991 } 2992 2992 2993 static int hda_codec_runtime_suspend(struct device *dev)2994 {2995 return hda_codec_suspend(dev);2996 }2997 2998 static int hda_codec_runtime_resume(struct device *dev)2999 {3000 return hda_codec_resume(dev);3001 }3002 3003 2993 #endif /* CONFIG_PM */ 3004 2994 … … 3021 3011 { 3022 3012 dev->power.power_state = PMSG_SUSPEND; 3023 return hda_codec_suspend(dev);3013 return pm_runtime_force_suspend(dev); 3024 3014 } 3025 3015 … … 3027 3017 { 3028 3018 dev->power.power_state = PMSG_RESUME; 3029 return hda_codec_resume(dev);3019 return pm_runtime_force_resume(dev); 3030 3020 } 3031 3021 … … 3033 3023 { 3034 3024 dev->power.power_state = PMSG_FREEZE; 3035 return hda_codec_suspend(dev);3025 return pm_runtime_force_suspend(dev); 3036 3026 } 3037 3027 … … 3039 3029 { 3040 3030 dev->power.power_state = PMSG_THAW; 3041 return hda_codec_resume(dev);3031 return pm_runtime_force_resume(dev); 3042 3032 } 3043 3033 … … 3045 3035 { 3046 3036 dev->power.power_state = PMSG_RESTORE; 3047 return hda_codec_resume(dev);3037 return pm_runtime_force_resume(dev); 3048 3038 } 3049 3039 #endif /* CONFIG_PM_SLEEP */ -
GPL/branches/uniaud32-next/alsa-kernel/pci/hda/hda_tegra.c
r629 r668 328 328 * 0 for 1 SDO, 1 for 2 SDO, 2 for 4 SDO lines. 329 329 */ 330 if (of_device_is_compatible(np, "nvidia,tegra 194-hda")) {330 if (of_device_is_compatible(np, "nvidia,tegra30-hda")) 331 331 u32 val; 332 332 -
GPL/branches/uniaud32-next/alsa-kernel/pci/hda/patch_realtek.c
r650 r668 7047 7047 ALC236_FIXUP_DELL_AIO_HEADSET_MIC, 7048 7048 ALC282_FIXUP_ACER_DISABLE_LINEOUT, 7049 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST, 7049 7050 }; 7050 7051 … … 8825 8826 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC), 8826 8827 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK), 8828 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST), 8827 8829 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), 8828 8830 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), … … 10238 10240 .v.func = alc861vd_fixup_dallas, 10239 10241 }, 10242 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = { 10243 .type = HDA_FIXUP_FUNC, 10244 .v.func = alc269_fixup_limit_int_mic_boost, 10245 .chained = true, 10246 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, 10247 }, 10240 10248 }; 10241 10249 -
GPL/branches/uniaud32-next/alsa-kernel/pci/hda/patch_via.c
r643 r668 118 118 spec->gen.indep_hp = 1; 119 119 spec->gen.keep_eapd_on = 1; 120 spec->gen.dac_min_mute = 1; 120 121 spec->gen.pcm_playback_hook = via_playback_pcm_hook; 121 122 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
Note:
See TracChangeset
for help on using the changeset viewer.