[PATCH] 8250_pci include offset in iomap_base

Alex Williamson (alex_williamson@hp.com)
Mon, 28 Apr 2003 11:31:30 -0600


This is a multi-part message in MIME format.
--------------9D3F5432B968490E5772C96F
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

This one-liner is required for PCI serial ports that have multiple
MMIO ports off a single PCI BAR. Calls to request_mem_resource() fail
after the first one otherwise. Patch against 2.5.67. Thanks,

Alex

--
Alex Williamson                             HP Linux & Open Source Lab
--------------9D3F5432B968490E5772C96F
Content-Type: text/plain; charset=us-ascii;
 name="8250_pci_mmio.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="8250_pci_mmio.diff"

--- linux-2.5.67.clean/drivers/serial/8250_pci.c 2003-04-07 11:32:18.000000000 -0600 +++ linux-2.5.67/drivers/serial/8250_pci.c 2003-04-28 11:08:38.000000000 -0600 @@ -126,7 +126,7 @@ return -ENOMEM; req->io_type = UPIO_MEM; - req->iomap_base = port; + req->iomap_base = port + offset; req->iomem_base = priv->remapped_bar[bar] + offset; req->iomem_reg_shift = regshift; } else {

--------------9D3F5432B968490E5772C96F--

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/