Changeset 668


Ignore:
Timestamp:
Jan 29, 2021, 11:01:48 PM (5 years ago)
Author:
Paul Smedley
Message:

Update linux sound code to 5.10.11 level

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  
    612612        if (info->is_midi) {
    613613                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;
    615616                inf->synth_type = SYNTH_TYPE_MIDI;
    616617                inf->synth_subtype = 0;
  • GPL/branches/uniaud32-next/alsa-kernel/include/sound/version.h

    r650 r668  
    11/* include/version.h */
    2 #define CONFIG_SND_VERSION "5.10.10"
     2#define CONFIG_SND_VERSION "5.10.11"
    33#define CONFIG_SND_DATE ""
  • GPL/branches/uniaud32-next/alsa-kernel/pci/hda/hda_codec.c

    r629 r668  
    29572957}
    29582958
    2959 static int hda_codec_suspend(struct device *dev)
     2959static int hda_codec_runtime_suspend(struct device *dev)
    29602960{
    29612961        struct hda_codec *codec = dev_to_hda_codec(dev);
     
    29762976}
    29772977
    2978 static int hda_codec_resume(struct device *dev)
     2978static int hda_codec_runtime_resume(struct device *dev)
    29792979{
    29802980        struct hda_codec *codec = dev_to_hda_codec(dev);
     
    29912991}
    29922992
    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 
    30032993#endif /* CONFIG_PM */
    30042994
     
    30213011{
    30223012        dev->power.power_state = PMSG_SUSPEND;
    3023         return hda_codec_suspend(dev);
     3013        return pm_runtime_force_suspend(dev);
    30243014}
    30253015
     
    30273017{
    30283018        dev->power.power_state = PMSG_RESUME;
    3029         return hda_codec_resume(dev);
     3019        return pm_runtime_force_resume(dev);
    30303020}
    30313021
     
    30333023{
    30343024        dev->power.power_state = PMSG_FREEZE;
    3035         return hda_codec_suspend(dev);
     3025        return pm_runtime_force_suspend(dev);
    30363026}
    30373027
     
    30393029{
    30403030        dev->power.power_state = PMSG_THAW;
    3041         return hda_codec_resume(dev);
     3031        return pm_runtime_force_resume(dev);
    30423032}
    30433033
     
    30453035{
    30463036        dev->power.power_state = PMSG_RESTORE;
    3047         return hda_codec_resume(dev);
     3037        return pm_runtime_force_resume(dev);
    30483038}
    30493039#endif /* CONFIG_PM_SLEEP */
  • GPL/branches/uniaud32-next/alsa-kernel/pci/hda/hda_tegra.c

    r629 r668  
    328328         * 0 for 1 SDO, 1 for 2 SDO, 2 for 4 SDO lines.
    329329         */
    330         if (of_device_is_compatible(np, "nvidia,tegra194-hda")) {
     330        if (of_device_is_compatible(np, "nvidia,tegra30-hda"))
    331331                u32 val;
    332332
  • GPL/branches/uniaud32-next/alsa-kernel/pci/hda/patch_realtek.c

    r650 r668  
    70477047        ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
    70487048        ALC282_FIXUP_ACER_DISABLE_LINEOUT,
     7049        ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
    70497050};
    70507051
     
    88258826        SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
    88268827        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),
    88278829        SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
    88288830        SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
     
    1023810240                .v.func = alc861vd_fixup_dallas,
    1023910241        },
     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        },
    1024010248};
    1024110249
  • GPL/branches/uniaud32-next/alsa-kernel/pci/hda/patch_via.c

    r643 r668  
    118118        spec->gen.indep_hp = 1;
    119119        spec->gen.keep_eapd_on = 1;
     120        spec->gen.dac_min_mute = 1;
    120121        spec->gen.pcm_playback_hook = via_playback_pcm_hook;
    121122        spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
Note: See TracChangeset for help on using the changeset viewer.