1. 13 Dec, 2021 1 commit
  2. 07 Dec, 2021 1 commit
  3. 06 Dec, 2021 2 commits
  4. 03 Dec, 2021 1 commit
  5. 02 Dec, 2021 4 commits
  6. 01 Dec, 2021 4 commits
  7. 30 Nov, 2021 5 commits
  8. 29 Nov, 2021 1 commit
  9. 27 Nov, 2021 1 commit
    • Mark Brown's avatar
      Suspend related fixes on Tegra · 8a724d5f
      Mark Brown authored
      Merge series from Sameer Pujar <spujar@nvidia.com>:
      
      	This series addresses following problems:
      	 * The runtime PM is not balanced in MVC driver, whenever
      	   mute or volume mixer controls are set.
      	 * Some of the AHUB devices (SFC, MVC, Mixer, AMX and ADX)
      	   use late system sleep. Suspend failure is seen on Jetson
      	   TX2 platform.
      8a724d5f
  10. 26 Nov, 2021 8 commits
  11. 25 Nov, 2021 2 commits
  12. 24 Nov, 2021 2 commits
  13. 23 Nov, 2021 2 commits
  14. 22 Nov, 2021 2 commits
  15. 20 Nov, 2021 1 commit
  16. 19 Nov, 2021 2 commits
  17. 18 Nov, 2021 1 commit
    • Takashi Iwai's avatar
      ALSA: ctxfi: Fix out-of-range access · 76c47183
      Takashi Iwai authored
      The master and next_conj of rcs_ops are used for iterating the
      resource list entries, and currently those are supposed to return the
      current value.  The problem is that next_conf may go over the last
      entry before the loop abort condition is evaluated, and it may return
      the "current" value that is beyond the array size.  It was caught
      recently as a GPF, for example.
      
      Those return values are, however, never actually evaluated, hence
      basically we don't have to consider the current value as the return at
      all.  By dropping those return values, the potential out-of-range
      access above is also fixed automatically.
      
      This patch changes the return type of master and next_conj callbacks
      to void and drop the superfluous code accordingly.
      
      BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=214985
      Cc: <stable@vger.kernel.org>
      Link: https://lore.kernel.org/r/20211118215729.26257-1-tiwai@suse.deSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      76c47183