aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2018-05-25 12:13:34 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2018-05-25 12:13:34 -0400
commita1a9f537aa44862a14c00c52f934b79fb725292d (patch)
tree712f92727853b3a464555b361a21d773b04e31c4
parentb50694381cfc22dce3a60a291cdae294a5e5777c (diff)
parent009f8c90f571d87855914dbc20e6c0ea2a3b19ae (diff)
Merge tag 'sound-4.17-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
Pull sound fixes from Takashi Iwai: "Two fixes: - a timer pause event notification was garbled upon the recent hardening work; corrected now - HD-audio runtime PM regression fix due to the incorrect return type" * tag 'sound-4.17-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: ALSA: hda - Fix runtime PM ALSA: timer: Fix pause event notification
-rw-r--r--sound/core/timer.c4
-rw-r--r--sound/pci/hda/hda_local.h6
2 files changed, 6 insertions, 4 deletions
diff --git a/sound/core/timer.c b/sound/core/timer.c
index dc87728c5b74..0ddcae495838 100644
--- a/sound/core/timer.c
+++ b/sound/core/timer.c
@@ -592,7 +592,7 @@ static int snd_timer_stop1(struct snd_timer_instance *timeri, bool stop)
592 else 592 else
593 timeri->flags |= SNDRV_TIMER_IFLG_PAUSED; 593 timeri->flags |= SNDRV_TIMER_IFLG_PAUSED;
594 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP : 594 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP :
595 SNDRV_TIMER_EVENT_CONTINUE); 595 SNDRV_TIMER_EVENT_PAUSE);
596 unlock: 596 unlock:
597 spin_unlock_irqrestore(&timer->lock, flags); 597 spin_unlock_irqrestore(&timer->lock, flags);
598 return result; 598 return result;
@@ -614,7 +614,7 @@ static int snd_timer_stop_slave(struct snd_timer_instance *timeri, bool stop)
614 list_del_init(&timeri->ack_list); 614 list_del_init(&timeri->ack_list);
615 list_del_init(&timeri->active_list); 615 list_del_init(&timeri->active_list);
616 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP : 616 snd_timer_notify1(timeri, stop ? SNDRV_TIMER_EVENT_STOP :
617 SNDRV_TIMER_EVENT_CONTINUE); 617 SNDRV_TIMER_EVENT_PAUSE);
618 spin_unlock(&timeri->timer->lock); 618 spin_unlock(&timeri->timer->lock);
619 } 619 }
620 spin_unlock_irqrestore(&slave_active_lock, flags); 620 spin_unlock_irqrestore(&slave_active_lock, flags);
diff --git a/sound/pci/hda/hda_local.h b/sound/pci/hda/hda_local.h
index 321e78baa63c..9bd935216c18 100644
--- a/sound/pci/hda/hda_local.h
+++ b/sound/pci/hda/hda_local.h
@@ -622,8 +622,10 @@ snd_hda_check_power_state(struct hda_codec *codec, hda_nid_t nid,
622{ 622{
623 return snd_hdac_check_power_state(&codec->core, nid, target_state); 623 return snd_hdac_check_power_state(&codec->core, nid, target_state);
624} 624}
625static inline bool snd_hda_sync_power_state(struct hda_codec *codec, 625
626 hda_nid_t nid, unsigned int target_state) 626static inline unsigned int snd_hda_sync_power_state(struct hda_codec *codec,
627 hda_nid_t nid,
628 unsigned int target_state)
627{ 629{
628 return snd_hdac_sync_power_state(&codec->core, nid, target_state); 630 return snd_hdac_sync_power_state(&codec->core, nid, target_state);
629} 631}