diff options
author | Keith Owens <kaos@sgi.com> | 2005-08-24 16:06:25 +1000 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-08-24 10:22:44 -0700 |
commit | 41290c14640bc9312bf63202d14ebef075b6171a (patch) | |
tree | 209aa1f61d73f84046bd8735c7b4ef306b30e3cc /arch/ia64 | |
parent | b7561524765a30334bf31c56b523aeb3c1a04c7d (diff) | |
download | op-kernel-dev-41290c14640bc9312bf63202d14ebef075b6171a.zip op-kernel-dev-41290c14640bc9312bf63202d14ebef075b6171a.tar.gz |
[PATCH] Export pcibios_bus_to_resource
pcibios_bus_to_resource is exported on all architectures except ia64
and sparc. Add exports for the two missing architectures. Needed when
Yenta socket support is compiled as a module.
Signed-off-by: Keith Owens <kaos@sgi.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/pci/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/ia64/pci/pci.c b/arch/ia64/pci/pci.c index 54d9ed4..f9472c5 100644 --- a/arch/ia64/pci/pci.c +++ b/arch/ia64/pci/pci.c @@ -380,6 +380,7 @@ void pcibios_bus_to_resource(struct pci_dev *dev, res->start = region->start + offset; res->end = region->end + offset; } +EXPORT_SYMBOL(pcibios_bus_to_resource); static int __devinit is_valid_resource(struct pci_dev *dev, int idx) { |