PCI: xgene: Annotate __iomem pointer
authorBjorn Helgaas <bhelgaas@google.com>
Mon, 17 May 2021 17:18:39 +0000 (12:18 -0500)
committerBjorn Helgaas <bhelgaas@google.com>
Tue, 6 Jul 2021 15:39:10 +0000 (10:39 -0500)
"bar_addr" is passed as the argument to writel(), which expects a
"void __iomem *".  Annotate "bar_addr" correctly.  Resolves an sparse
"incorrect type in argument 2 (different address spaces)" warning.

Link: https://lore.kernel.org/r/202105171809.Tay9fImZ-lkp@intel.com
Link: https://lore.kernel.org/r/20210517171839.25777-1-helgaas@kernel.org
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
drivers/pci/controller/pci-xgene.c

index 7f503dd..1a412f5 100644 (file)
@@ -485,7 +485,7 @@ static void xgene_pcie_setup_ib_reg(struct xgene_pcie_port *port,
 {
        void __iomem *cfg_base = port->cfg_base;
        struct device *dev = port->dev;
-       void *bar_addr;
+       void __iomem *bar_addr;
        u32 pim_reg;
        u64 cpu_addr = entry->res->start;
        u64 pci_addr = cpu_addr - entry->offset;