1. 27 4月, 2015 1 次提交
  2. 23 3月, 2015 1 次提交
  3. 25 2月, 2014 1 次提交
    • T
      ALSA: hda - Replace with standard printk · 4e76a883
      Takashi Iwai 提交于
      Use dev_err() and co for messages from HD-audio controller and codec
      drivers.  The codec drivers are mostly bound with codec objects, so
      some helper macros, codec_err(), codec_info(), etc, are provided.
      They merely wrap the corresponding dev_xxx().
      
      There are a few places still calling snd_printk() and its variants
      as they are called without the codec or device context.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      4e76a883
  4. 07 2月, 2014 1 次提交
    • T
      ALSA: hda - Fix inconsistent Mic mute LED · 7fe30711
      Takashi Iwai 提交于
      The current code for controlling mic mute LED in patch_sigmatel.c
      blindly assumes that there is a single capture switch.  But, there can
      be multiple multiple ones, and each of them flips the state, ended up
      in an inconsistent state.
      
      For fixing this problem, this patch adds kcontrol to be passed to the
      hook function so that the callee can check which switch is being
      accessed.  In stac_capture_led_hook(), the state is checked as a
      bitmask, and turns on the LED when all capture switches are off.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      7fe30711
  5. 14 1月, 2014 1 次提交
  6. 08 1月, 2014 1 次提交
    • T
      ALSA: hda - Split Thinkpad ACPI-related code · b317b032
      Takashi Iwai 提交于
      Both patch_realtek.c and patch_conexant.c contain the fairy same code
      snippet for supporting Thinkpad ACPI LED controls.  Split them into
      thinkpad_helper.c and include it from both places.  Although this
      isn't the best approach from the code size POV, the probability for
      coexistence of both Realtek and Conexant codecs on a single machine is
      pretty low, thus it'll end up with less memory footprint than
      splitting to yet another module.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      b317b032