* [PATCH] ppc32: properly export some pcibios_* functions
@ 2004-08-26 8:59 Benjamin Herrenschmidt
0 siblings, 0 replies; only message in thread
From: Benjamin Herrenschmidt @ 2004-08-26 8:59 UTC (permalink / raw)
To: Andrew Morton; +Cc: Linus Torvalds, Linux Kernel list
Hi !
Recent yenta_socket (and maybe others) rely on some pcibios_* functions
to be available to modules. This patch exports them.
Ben.
===== arch/ppc/kernel/pci.c 1.42 vs edited =====
--- 1.42/arch/ppc/kernel/pci.c 2004-08-04 21:55:48 +10:00
+++ edited/arch/ppc/kernel/pci.c 2004-08-26 16:43:07 +10:00
@@ -144,8 +144,7 @@
}
DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, pcibios_fixup_resources);
-void
-pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
+void pcibios_resource_to_bus(struct pci_dev *dev, struct pci_bus_region *region,
struct resource *res)
{
unsigned long offset = 0;
@@ -158,6 +157,7 @@
region->start = res->start - offset;
region->end = res->end - offset;
}
+EXPORT_SYMBOL(pcibios_resource_to_bus);
/*
* We need to avoid collisions with `mirrored' VGA ports
@@ -172,8 +172,7 @@
* but we want to try to avoid allocating at 0x2900-0x2bff
* which might have be mirrored at 0x0100-0x03ff..
*/
-void
-pcibios_align_resource(void *data, struct resource *res, unsigned long size,
+void pcibios_align_resource(void *data, struct resource *res, unsigned long size,
unsigned long align)
{
struct pci_dev *dev = data;
@@ -193,7 +192,7 @@
}
}
}
-
+EXPORT_SYMBOL(pcibios_align_resource);
/*
* Handle resources of PCI devices. If the world were perfect, we could
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-08-26 9:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-26 8:59 [PATCH] ppc32: properly export some pcibios_* functions Benjamin Herrenschmidt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox