1. 07 Jul, 2022 13 commits
  2. 06 Jul, 2022 15 commits
  3. 05 Jul, 2022 9 commits
  4. 04 Jul, 2022 3 commits
    • Linus Torvalds's avatar
      Merge tag 'soc-fixes-5.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc · c1084b6c
      Linus Torvalds authored
      Pull ARM SoC fixes from Arnd Bergmann:
       "Another set of minor patches for Arm DTS files and soc specific
        drivers:
      
         - More reference counting bug fixes for DT nodes, and other trivial
           code fixes
      
         - Multiple code fixes for the Arm SCMI firmware driver to improve
           compatibility with firmware implementations.
      
         - A patch series for at91 to address power management issues from
           using the wrong DT compatible properties.
      
         - A series of patches to fix pad settings for NXP imx8mp to leave the
           configuration untouched from the boot loader
      
         - Additional DT fixes for qualcomm and NXP platforms
      
         - A boot time fix for stm32mp15 DT
      
         - Konrad Dybcio becomes an additional reviewer for the Qualcomm
           platforms"
      
      * tag 'soc-fixes-5.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (42 commits)
        soc: qcom: smem: use correct format characters
        ARM: dts: stm32: add missing usbh clock and fix clk order on stm32mp15
        ARM: dts: stm32: delete fixed clock node on STM32MP15-SCMI
        ARM: dts: stm32: DSI should use LSE SCMI clock on DK1/ED1 STM32 board
        ARM: dts: stm32: use the correct clock source for CEC on stm32mp151
        ARM: dts: stm32: fix pwr regulators references to use scmi
        soc: ixp4xx/npe: Fix unused match warning
        ARM: at91: pm: Mark at91_pm_secure_init as __init
        ARM: at91: fix soc detection for SAM9X60 SiPs
        ARM: dts: at91: sama5d2_icp: fix eeprom compatibles
        ARM: dts: at91: sam9x60ek: fix eeprom compatible and size
        ARM: at91: pm: use proper compatibles for sama7g5's rtc and rtt
        ARM: at91: pm: use proper compatibles for sam9x60's rtc and rtt
        ARM: at91: pm: use proper compatible for sama5d2's rtc
        arm64: dts: qcom: msm8992-*: Fix vdd_lvs1_2-supply typo
        firmware: arm_scmi: Remove usage of the deprecated ida_simple_xxx API
        firmware: arm_scmi: Fix response size warning for OPTEE transport
        arm64: dts: imx8mp-icore-mx8mp-edim2.2: correct pad settings
        arm64: dts: imx8mp-phyboard-pollux-rdk: correct i2c2 & mmc settings
        arm64: dts: imx8mp-phyboard-pollux-rdk: correct eqos pad settings
        ...
      c1084b6c
    • Arnd Bergmann's avatar
      Merge tag 'stm32-dt-for-v5.19-fixes-2' of... · c0d1a7bd
      Arnd Bergmann authored
      Merge tag 'stm32-dt-for-v5.19-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32 into arm/fixes
      
      STM32 DT fixes for v5.19, round 2
      
      Highlights:
      -----------
      
       -Fixes STM32MP15:
        - Add missing usbh clock and fix clk order for usbh to avoid PLL
          issue.
        - Fix SCMI version: use scmi regulator and update missing SCMI
          clocks to be able to correcly boot.
      
      * tag 'stm32-dt-for-v5.19-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32:
        ARM: dts: stm32: add missing usbh clock and fix clk order on stm32mp15
        ARM: dts: stm32: delete fixed clock node on STM32MP15-SCMI
        ARM: dts: stm32: DSI should use LSE SCMI clock on DK1/ED1 STM32 board
        ARM: dts: stm32: use the correct clock source for CEC on stm32mp151
        ARM: dts: stm32: fix pwr regulators references to use scmi
      
      Link: https://lore.kernel.org/r/1259e082-a3a4-96a5-ec9c-05dbb893a746@foss.st.comSigned-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      c0d1a7bd
    • Bill Wendling's avatar
      soc: qcom: smem: use correct format characters · 0ec29ccf
      Bill Wendling authored
      When compiling with -Wformat, clang emits the following warnings:
      
      drivers/soc/qcom/smem.c:847:41: warning: format specifies type 'unsigned
      short' but the argument has type 'unsigned int' [-Wformat]
                              dev_err(smem->dev, "bad host %hu\n", remote_host);
                                                           ~~~     ^~~~~~~~~~~
                                                           %u
      ./include/linux/dev_printk.h:144:65: note: expanded from macro 'dev_err'
              dev_printk_index_wrap(_dev_err, KERN_ERR, dev, dev_fmt(fmt), ##__VA_ARGS__)
                                                                     ~~~     ^~~~~~~~~~~
      ./include/linux/dev_printk.h:110:23: note: expanded from macro 'dev_printk_index_wrap'
                      _p_func(dev, fmt, ##__VA_ARGS__);                       \
                                   ~~~    ^~~~~~~~~~~
      drivers/soc/qcom/smem.c:852:47: warning: format specifies type 'unsigned
      short' but the argument has type 'unsigned int' [-Wformat]
                              dev_err(smem->dev, "duplicate host %hu\n", remote_host);
                                                                 ~~~     ^~~~~~~~~~~
                                                                 %u
      ./include/linux/dev_printk.h:144:65: note: expanded from macro 'dev_err'
              dev_printk_index_wrap(_dev_err, KERN_ERR, dev, dev_fmt(fmt), ##__VA_ARGS__)
                                                                     ~~~     ^~~~~~~~~~~
      ./include/linux/dev_printk.h:110:23: note: expanded from macro 'dev_printk_index_wrap'
                      _p_func(dev, fmt, ##__VA_ARGS__);                       \
                                   ~~~    ^~~~~~~~~~~
      
      The types of these arguments are unconditionally defined, so this patch
      updates the format character to the correct one and change type of
      remote_host to "u16" to match with other types.
      Signed-off-by: default avatarBill Wendling <morbo@google.com>
      Tested-by: default avatarJustin Stitt <jstitt007@gmail.com>
      Reviewed-by: default avatarJustin Stitt <jstitt007@gmail.com>
      Link: https://github.com/ClangBuiltLinux/linux/issues/378Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      0ec29ccf