aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pci/pcib_private.h
diff options
context:
space:
mode:
authorBenno Rice <benno@FreeBSD.org>2003-01-14 11:37:56 +0000
committerBenno Rice <benno@FreeBSD.org>2003-01-14 11:37:56 +0000
commit2c2d1d071e28d3cc8f2b8fc8b42fd461a9ee8267 (patch)
tree054ee4487be0d9c9f5a442e16688f745b6751a83 /sys/dev/pci/pcib_private.h
parent5dda08514ed0dad3c712d5cf8f90161658a78573 (diff)
downloadsrc-2c2d1d071e28d3cc8f2b8fc8b42fd461a9ee8267.tar.gz
src-2c2d1d071e28d3cc8f2b8fc8b42fd461a9ee8267.zip
Make the base pcib_route_interrupt method available to other pci-pci bridge
sub-classes. This allows the powerpc kernel to build again. Forgotten by: benno Spotted by: grehan
Notes
Notes: svn path=/head/; revision=109229
Diffstat (limited to 'sys/dev/pci/pcib_private.h')
-rw-r--r--sys/dev/pci/pcib_private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/pci/pcib_private.h b/sys/dev/pci/pcib_private.h
index b6ef8b85fed1..e897e4bc8ab3 100644
--- a/sys/dev/pci/pcib_private.h
+++ b/sys/dev/pci/pcib_private.h
@@ -71,6 +71,7 @@ struct resource *pcib_alloc_resource(device_t dev, device_t child, int type, int
int pcib_maxslots(device_t dev);
u_int32_t pcib_read_config(device_t dev, int b, int s, int f, int reg, int width);
void pcib_write_config(device_t dev, int b, int s, int f, int reg, u_int32_t val, int width);
+int pcib_route_interrupt(device_t pcib, device_t dev, int pin);
extern devclass_t pcib_devclass;