1. 04 Sep, 2020 6 commits
  2. 03 Sep, 2020 2 commits
  3. 01 Sep, 2020 4 commits
  4. 28 Aug, 2020 2 commits
  5. 27 Aug, 2020 12 commits
  6. 26 Aug, 2020 12 commits
  7. 25 Aug, 2020 2 commits
    • Mark Brown's avatar
      Merge series "ASoC: SOF: trivial code/log/comment improvements" from... · 9db6f432
      Mark Brown authored
      Merge series "ASoC: SOF: trivial code/log/comment improvements" from Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>:
      
      Remove useless variable initialization and allocation, adjust log
      levels to make support easier, and fix comments. No functional
      changes.
      
      Guennadi Liakhovetski (2):
        ASoC: SOF: topology: (cosmetic) remove redundant variable
          initialisations
        ASoC: SOF: (cosmetic) use the "bool" type where it makes sense
      
      Pierre-Louis Bossart (4):
        ASoC: SOF: IPC: reduce verbosity of IPC pointer updates
        ASoC: SOF: acpi: add dev_dbg() log for probe completion
        ASoC: SOF: Intel: add dev_dbg log when driver is not selected
        ASoC: Intel: use consistent HDAudio spelling in comments/docs
      
      Ranjani Sridharan (2):
        ASoC: SOF: topology: remove unnecessary memory alloc for sdev->private
        ASoC: SOF: topology: reduce the log level for unhandled widgets
      
       include/sound/soc-acpi.h      |  2 +-
       sound/soc/intel/Kconfig       |  2 +-
       sound/soc/intel/skylake/skl.c |  6 +++---
       sound/soc/sof/Kconfig         |  2 +-
       sound/soc/sof/intel/Kconfig   |  2 +-
       sound/soc/sof/ipc.c           | 16 +++++++++++-----
       sound/soc/sof/pcm.c           |  8 ++++----
       sound/soc/sof/sof-acpi-dev.c  |  2 ++
       sound/soc/sof/sof-pci-dev.c   |  6 +++---
       sound/soc/sof/sof-priv.h      | 10 +++++-----
       sound/soc/sof/topology.c      | 20 ++++----------------
       11 files changed, 36 insertions(+), 40 deletions(-)
      
      base-commit: aafdeba5
      --
      2.25.1
      9db6f432
    • Dan Carpenter's avatar
      ASoC: hdac_hdmi: tidy up a memset() · 67207297
      Dan Carpenter authored
      The ARRAY_SIZE() is the number of the elements but we want to use the
      number of bytes.  Fortunately, in this case the value is the same so it
      doesn't affect runtime.
      Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
      Link: https://lore.kernel.org/r/20200825104623.GA278587@mwandaSigned-off-by: default avatarMark Brown <broonie@kernel.org>
      67207297