Commit 726eb316 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman
Browse files

staging: mt7621-pci: group io resource assignments all together



To improve a bit readabily group all the IO resource related
assignments together.

Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Link: https://lore.kernel.org/r/20210505121736.6459-5-sergio.paracuellos@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c92454a4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -284,17 +284,17 @@ static int mt7621_pci_parse_request_of_pci_ranges(struct pci_host_bridge *host)
	 * well for MIPS platforms that don't define PCI_IOBASE, so set the IO
	 * resource manually instead.
	 */
	pcie->io.name = node->full_name;
	pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
	for_each_of_pci_range(&parser, &range) {
		switch (range.flags & IORESOURCE_TYPE_BITS) {
		case IORESOURCE_IO:
			pcie->io_map_base =
				(unsigned long)ioremap(range.cpu_addr,
						       range.size);
			pcie->io.name = node->full_name;
			pcie->io.flags = range.flags;
			pcie->io.start = range.cpu_addr;
			pcie->io.end = range.cpu_addr + range.size - 1;
			pcie->io.parent = pcie->io.child = pcie->io.sibling = NULL;
			set_io_port_base(pcie->io_map_base);
			break;
		}