1. 11 Jan, 2021 8 commits
  2. 10 Jan, 2021 4 commits
  3. 07 Jan, 2021 3 commits
  4. 05 Jan, 2021 10 commits
  5. 04 Jan, 2021 1 commit
    • Adam Ford's avatar
      arm64: dts: imx: Add Beacon i.MX8M Nano development kit · 36ca3c8c
      Adam Ford authored
      Beacon Embeddedworks is launching a development kit based on the
      i.MX8M Nano SoC.  The kit consists of a System on Module (SOM)
      + baseboard.  The SOM has the SoC, eMMC, and Ethernet. The baseboard
      has an wm8962 audio CODEC, a PDM microphone, and a single USB OTG.
      
      The baseboard is capable of two different, mutually exclusive video
      outputs, so the common items are in the baseboard file.  When
      the video becomes available, LVDS output will be added to this kit
      file, and a second kit file will be added to support HDMI.
      Signed-off-by: default avatarAdam Ford <aford173@gmail.com>
      Reviewed-by: default avatarKrzysztof Kozlowski <krzk@kernel.org>
      Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
      36ca3c8c
  6. 27 Dec, 2020 8 commits
  7. 26 Dec, 2020 5 commits
  8. 25 Dec, 2020 1 commit
    • Linus Torvalds's avatar
      drm/amd/display: avoid uninitialized variable warning · 61d79136
      Linus Torvalds authored
      clang (quite rightly) complains fairly loudly about the newly added
      mpc1_get_mpc_out_mux() function returning an uninitialized value if the
      'opp_id' checks don't pass.
      
      This may not happen in practice, but the code really shouldn't return
      garbage if the sanity checks don't pass.
      
      So just initialize 'val' to zero to avoid the issue.
      
      Fixes: 110b055b ("drm/amd/display: add getter routine to retrieve mpcc mux")
      Cc: Josip Pavic <Josip.Pavic@amd.com>
      Cc: Bindu Ramamurthy <bindu.r@amd.com>
      Cc: Alex Deucher <alexander.deucher@amd.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      61d79136