powerpc: Drop using struct of_pci_range.pci_space field
authorRob Herring <robh@kernel.org>
Thu, 13 Feb 2020 23:19:19 +0000 (17:19 -0600)
committerRob Herring <robh@kernel.org>
Fri, 14 Feb 2020 20:25:20 +0000 (14:25 -0600)
Let's use the struct of_pci_range.flags field instead so we can remove
the pci_space field.

Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
Signed-off-by: Rob Herring <robh@kernel.org>
arch/powerpc/kernel/pci-common.c

index c6c0341..d0074ad 100644 (file)
@@ -728,7 +728,7 @@ void pci_process_bridge_OF_ranges(struct pci_controller *hose,
                               " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n",
                               range.cpu_addr, range.cpu_addr + range.size - 1,
                               range.pci_addr,
-                              (range.pci_space & 0x40000000) ?
+                              (range.flags & IORESOURCE_PREFETCH) ?
                               "Prefetch" : "");
 
                        /* We support only 3 memory ranges */