summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>2001-06-26 06:05:56 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>2001-06-26 06:05:56 +0000
commitf97085aaec6a1da206edd0a59387ec5aba74e870 (patch)
tree31437d3777ecc56070664ed217bb4f6c92197930 /sys
parent45ffcbde52ed416f22f893b4c25fbc9c49f15b4c (diff)
remove statics
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/iop_pci.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/pci/iop_pci.c b/sys/dev/pci/iop_pci.c
index ff72487d3db..7b3b9f8f4cc 100644
--- a/sys/dev/pci/iop_pci.c
+++ b/sys/dev/pci/iop_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: iop_pci.c,v 1.1 2001/06/25 23:12:52 niklas Exp $ */
+/* $OpenBSD: iop_pci.c,v 1.2 2001/06/26 06:05:55 niklas Exp $ */
/* $NetBSD: iop_pci.c,v 1.4 2001/03/20 13:21:00 ad Exp $ */
/*-
@@ -62,14 +62,14 @@
#define PCI_INTERFACE_I2O_POLLED 0x00
#define PCI_INTERFACE_I2O_INTRDRIVEN 0x01
-static void iop_pci_attach(struct device *, struct device *, void *);
-static int iop_pci_match(struct device *, void *, void *);
+void iop_pci_attach(struct device *, struct device *, void *);
+int iop_pci_match(struct device *, void *, void *);
struct cfattach iop_pci_ca = {
sizeof(struct iop_softc), iop_pci_match, iop_pci_attach
};
-static int
+int
iop_pci_match(parent, match, aux)
struct device *parent;
void *match;
@@ -92,7 +92,7 @@ iop_pci_match(parent, match, aux)
return (0);
}
-static void
+void
iop_pci_attach(struct device *parent, struct device *self, void *aux)
{
struct pci_attach_args *pa;