Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5ba7205f authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: pci: Kill off the now unused hose->io_base.



Nothing is using this any more, so kill it off.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 3f8daeac
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@ int __init sh7751_pci_init(struct pci_channel *chan)
	pr_debug("PCI: Starting intialization.\n");

	chan->reg_base = 0xfe200000;
	chan->io_base = 0xfe240000;

	/* check for SH7751/SH7751R hardware */
	id = pci_read_reg(chan, SH7751_PCICONF0);
@@ -136,13 +135,6 @@ int __init sh7751_pcic_init(struct pci_channel *chan,
	pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word);
	pci_write_reg(chan, word , SH4_PCIMBR);

	/* Map IO space into PCI IO window:
	 * IO addresses will be translated to the PCI IO window base address
	 */
	pr_debug("PCI: Mapping IO address 0x%x - 0x%x to base 0x%lx\n",
		 chan->io_resource->start, chan->io_resource->end,
		 chan->io_base + chan->io_resource->start);

	/* Make sure the MSB's of IO window are set to access PCI space
	 * correctly */
	word = chan->io_resource->start & SH4_PCIIOBR_MASK;
+0 −1
Original line number Diff line number Diff line
@@ -62,7 +62,6 @@ static int __init sh7780_pci_init(void)
	printk(KERN_NOTICE "PCI: Starting intialization.\n");

	chan->reg_base = 0xfe040000;
	chan->io_base = 0xfe200000;

	/* Enable CPU access to the PCIC registers. */
	__raw_writel(PCIECR_ENBL, PCIECR);
+0 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@ struct pci_channel {
	int			enabled;

	unsigned long		reg_base;
	unsigned long		io_base;

	unsigned long		io_map_base;
};