1. 22 2月, 2023 10 次提交
  2. 09 2月, 2023 17 次提交
  3. 04 2月, 2023 1 次提交
    • A
      scsi: ufs: qcom: fix platform_msi_domain_free_irqs() reference · 49f262bc
      Arnd Bergmann 提交于
      The newly added MSI support is mostly hidden inside of an #ifdef,
      except for one line that now causes a build failure when MSI
      is disabled:
      
      drivers/ufs/host/ufs-qcom.c: In function 'ufs_qcom_remove':
      drivers/ufs/host/ufs-qcom.c:1698:9: error: implicit declaration of function 'platform_msi_domain_free_irqs' [-Werror=i]
       1698 |         platform_msi_domain_free_irqs(hba->dev);
            |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      
      Above that, the symbol that guards the other call was recently removed, so
      that is all dead code at the moment.
      
      Remove the incorrect #ifdef and instead of a Kconfig dependency to only
      allow building the driver when CONFIG_GENERIC_MSI_IRQ is enabled. This
      symbol is always present when PCI_MSI or ARM_GIC_V3_ITS are enabled, both
      of which should be present on kernels that can run on Qualcomm SoCs.
      
      The 'select RESET_CONTROLLER' in combination with this dependency
      unfortunately causes a dependency loop and this is a user-visible symbol,
      so it's better to change both to 'depends on'.
      
      Link: https://lore.kernel.org/r/20230126211831.2274211-1-arnd@kernel.org
      Fixes: 519b6274 ("scsi: ufs: qcom: Add MCQ ESI config vendor specific ops")
      Fixes: 13e7accb ("genirq: Get rid of GENERIC_MSI_IRQ_DOMAIN")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Reviewed-by: NManivannan Sadhasivam <mani@kernel.org>
      Acked-by: NCan Guo <quic_cang@quicinc.com>
      Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
      49f262bc
  4. 24 1月, 2023 7 次提交
  5. 19 1月, 2023 5 次提交