aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_codec.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-08-20 04:22:25 -0400
committerTakashi Iwai <tiwai@suse.de>2012-08-20 05:24:29 -0400
commitb244d335609f9bbf4c0204a365bf03b7ac53c3c8 (patch)
tree23a0a48e14788fae844c328ff64f97e0f084f9fb /sound/pci/hda/hda_codec.c
parent6f0fa66051e92f361bd293432466f5e62832adbf (diff)
ALSA: hda - Add tracepoints at snd_hda_power_up/down entrances.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.c')
-rw-r--r--sound/pci/hda/hda_codec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
index 408babc10437..ad0101e2d4ff 100644
--- a/sound/pci/hda/hda_codec.c
+++ b/sound/pci/hda/hda_codec.c
@@ -4417,6 +4417,7 @@ static void __snd_hda_power_up(struct hda_codec *codec, bool wait_power_down)
4417 4417
4418 spin_lock(&codec->power_lock); 4418 spin_lock(&codec->power_lock);
4419 codec->power_count++; 4419 codec->power_count++;
4420 trace_hda_power_count(codec);
4420 /* Return if power_on or transitioning to power_on, unless currently 4421 /* Return if power_on or transitioning to power_on, unless currently
4421 * powering down. */ 4422 * powering down. */
4422 if ((codec->power_on || codec->power_transition > 0) && 4423 if ((codec->power_on || codec->power_transition > 0) &&
@@ -4496,6 +4497,7 @@ void snd_hda_power_down(struct hda_codec *codec)
4496{ 4497{
4497 spin_lock(&codec->power_lock); 4498 spin_lock(&codec->power_lock);
4498 --codec->power_count; 4499 --codec->power_count;
4500 trace_hda_power_count(codec);
4499 if (!codec->power_on || codec->power_count || codec->power_transition) { 4501 if (!codec->power_on || codec->power_count || codec->power_transition) {
4500 spin_unlock(&codec->power_lock); 4502 spin_unlock(&codec->power_lock);
4501 return; 4503 return;