1. 24 10月, 2019 1 次提交
  2. 23 10月, 2019 4 次提交
  3. 21 10月, 2019 8 次提交
  4. 19 10月, 2019 12 次提交
  5. 16 10月, 2019 4 次提交
    • S
      ASoC: rt1011: Read and apply r0 and temperature device property · 8de6e755
      Shuming Fan 提交于
      Typically, the r0 (calibration data) and temperature were measured in the factory.
      This information is written into the non-volatile area
      where keeps data whether factory reset or OS update.
      In Chromium OS case, the coreboot will read the info from VPD and create
      the device property for each rt1011.
      Signed-off-by: NShuming Fan <shumingf@realtek.com>
      Tested-By: NCheng-Yi Chiang <cychiang@chromium.org>
      Link: https://lore.kernel.org/r/20191016085845.11672-1-shumingf@realtek.comSigned-off-by: NMark Brown <broonie@kernel.org>
      8de6e755
    • S
      ASoC: dt-bindings: rt1011: add r0 and temperature device property · cf775f68
      Shuming Fan 提交于
      Typically, the r0 (calibration data) and temperature were measured in the factory.
      This information is written into the non-volatile area
      where keeps data whether factory reset or OS update.
      Signed-off-by: NShuming Fan <shumingf@realtek.com>
      Link: https://lore.kernel.org/r/20191016115617.23213-1-shumingf@realtek.comSigned-off-by: NMark Brown <broonie@kernel.org>
      cf775f68
    • B
      ASoC: wm8958: use <asm/unaligned.h> to simplify code · 3ad00f6a
      Ben Dooks (Codethink) 提交于
      Simplify the memcpy/be32_to_cpu() code by simply using
      get_unaligned_be32() throughout and makes the code nicer
      to look at.
      
      This fixes the following warnings from sparse:
      
      sound/soc/codecs/wm8958-dsp2.c:62:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:62:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:62:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:62:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:62:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:62:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:69:15: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:69:15: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:69:15: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:69:15: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:69:15: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:69:15: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:72:18: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:72:18: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:72:18: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:72:18: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:72:18: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:72:18: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:91:17: warning: cast to restricted __be64
      sound/soc/codecs/wm8958-dsp2.c:108:29: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:108:29: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:108:29: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:108:29: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:108:29: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:108:29: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:120:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:120:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:120:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:120:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:120:26: warning: cast to restricted __be32
      sound/soc/codecs/wm8958-dsp2.c:120:26: warning: cast to restricted __be32
      Signed-off-by: NBen Dooks <ben.dooks@codethink.co.uk>
      Acked-by: NCharles Keepax <ckeepax@opensource.cirrus.com>
      Link: https://lore.kernel.org/r/20191016120149.5860-1-ben.dooks@codethink.co.ukSigned-off-by: NMark Brown <broonie@kernel.org>
      3ad00f6a
    • S
      ASoC: rt1011: set tx/rx slots from tx/rx_mask in TDM case · 81bd644f
      Shuming Fan 提交于
      The TX/RX slot configuration use tx/rx_mask which requested
      by the machine driver.
      Signed-off-by: NShuming Fan <shumingf@realtek.com>
      Link: https://lore.kernel.org/r/20191016085754.11614-1-shumingf@realtek.comSigned-off-by: NMark Brown <broonie@kernel.org>
      81bd644f
  6. 15 10月, 2019 6 次提交
  7. 14 10月, 2019 5 次提交