1. 17 5月, 2017 2 次提交
  2. 09 5月, 2017 1 次提交
  3. 08 5月, 2017 1 次提交
  4. 26 4月, 2017 1 次提交
  5. 21 4月, 2017 3 次提交
  6. 20 4月, 2017 1 次提交
  7. 13 4月, 2017 1 次提交
  8. 12 4月, 2017 1 次提交
  9. 10 4月, 2017 2 次提交
  10. 07 4月, 2017 1 次提交
  11. 03 4月, 2017 2 次提交
  12. 01 4月, 2017 1 次提交
  13. 31 3月, 2017 1 次提交
    • H
      ALSA: hda - fix a problem for lineout on a Dell AIO machine · 2f726aec
      Hui Wang 提交于
      On this Dell AIO machine, the lineout jack does not work.
      
      We found the pin 0x1a is assigned to lineout on this machine, and in
      the past, we applied ALC298_FIXUP_DELL1_MIC_NO_PRESENCE to fix the
      heaset-set mic problem for this machine, this fixup will redefine
      the pin 0x1a to headphone-mic, as a result the lineout doesn't
      work anymore.
      
      After consulting with Dell, they told us this machine doesn't support
      microphone via headset jack, so we add a new fixup which only defines
      the pin 0x18 as the headset-mic.
      
      [rearranged the fixup insertion position by tiwai in order to make the
       merge with other branches easier -- tiwai]
      
      Fixes: 59ec4b57 ("ALSA: hda - Fix headset mic detection problem for two dell machines")
      Cc: <stable@vger.kernel.org>
      Signed-off-by: NHui Wang <hui.wang@canonical.com>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      2f726aec
  14. 23 3月, 2017 1 次提交
  15. 20 3月, 2017 3 次提交
  16. 07 3月, 2017 3 次提交
  17. 01 3月, 2017 6 次提交
  18. 28 2月, 2017 2 次提交
  19. 27 2月, 2017 1 次提交
  20. 25 2月, 2017 1 次提交
  21. 22 2月, 2017 1 次提交
    • B
      ALSA: pci: constify snd_kcontrol_new structures · f3b827e0
      Bhumika Goyal 提交于
      Declare snd_kcontrol_new structures as const as they are only passed as
      an argument to the function snd_ctl_new1. This argument is of type
      const, so snd_kcontrol_new structures having the same property can be
      made const too.
      Done using Coccinelle:
      
      @r1 disable optional_qualifier @
      identifier i;
      position p;
      @@
      static struct snd_kcontrol_new i@p = {...};
      
      @ok1@
      identifier r1.i;
      position p;
      expression e1;
      @@
      snd_ctl_new1(&i@p,e1)
      
      @bad@
      position p!={r1.p,ok1.p};
      identifier r1.i;
      @@
      i@p
      
      @depends on !bad disable optional_qualifier@
      identifier r1.i;
      @@
      +const
      struct snd_kcontrol_new i;
      Signed-off-by: NBhumika Goyal <bhumirks@gmail.com>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      f3b827e0
  22. 16 2月, 2017 3 次提交
  23. 14 2月, 2017 1 次提交