[PATCH] pcibios_bus_to_resource for parisc [Was: Re: [PATCH
8/8] pci and yenta: pcibios_bus_to_resource]
Grant Grundler
grundler at parisc-linux.org
Sun Jul 24 21:28:40 EDT 2005
On Sat, Jul 23, 2005 at 09:54:11PM +0200, Dominik Brodowski wrote:
> Oh, yes, I seem to have missed it. Sorry. Does this patch look good?
Yes.
Acked-by: Grant Grundler <grundler at parisc-linux.org>
I'll commit this to the cvs.parisc-linux.org tree as well.
Willy can let me deal with the collision if it's not trivial
on his next merge.
thanks,
grant
>
>
> Add pcibios_bus_to_resource for parisc.
>
> Signed-off-by: Dominik Brodowski <linux at dominikbrodowski.net>
>
> Index: 2.6.13-rc3-git2/arch/parisc/kernel/pci.c
> ===================================================================
> --- 2.6.13-rc3-git2.orig/arch/parisc/kernel/pci.c
> +++ 2.6.13-rc3-git2/arch/parisc/kernel/pci.c
> @@ -255,8 +255,26 @@ void __devinit pcibios_resource_to_bus(s
> pcibios_link_hba_resources(&hba->lmmio_space, bus->resource[1]);
> }
>
> +void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
> + struct pci_bus_region *region)
> +{
> + struct pci_bus *bus = dev->bus;
> + struct pci_hba_data *hba = HBA_DATA(bus->bridge->platform_data);
> +
> + if (res->flags & IORESOURCE_MEM) {
> + res->start = PCI_HOST_ADDR(hba, region->start);
> + res->end = PCI_HOST_ADDR(hba, region->end);
> + }
> +
> + if (res->flags & IORESOURCE_IO) {
> + res->start = region->start;
> + res->end = region->end;
> + }
> +}
> +
> #ifdef CONFIG_HOTPLUG
> EXPORT_SYMBOL(pcibios_resource_to_bus);
> +EXPORT_SYMBOL(pcibios_bus_to_resource);
> #endif
>
> /*
More information about the linux-pcmcia
mailing list