aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/rp
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-10-16 08:48:39 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-10-16 08:48:39 +0000
commit031fd299d7932eb7d6983faf9a6d4d8beec1931f (patch)
tree89ff719c9c7ae5edd6c20e1323063539f8428e22 /sys/dev/rp
parent4d8d520f17fb14848f4007777c279114b698cb8d (diff)
Notes
Diffstat (limited to 'sys/dev/rp')
-rw-r--r--sys/dev/rp/rp.c6
-rw-r--r--sys/dev/rp/rp_isa.c2
-rw-r--r--sys/dev/rp/rp_pci.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c
index 3176ca424d3f8..148267a76631f 100644
--- a/sys/dev/rp/rp.c
+++ b/sys/dev/rp/rp.c
@@ -955,7 +955,7 @@ rp_releaseresource(CONTROLLER_t *ctlp)
}
}
-int
+static int
rpopen(dev, flag, mode, td)
dev_t dev;
int flag, mode;
@@ -1114,7 +1114,7 @@ out2:
return(error);
}
-int
+static int
rpclose(dev, flag, mode, td)
dev_t dev;
int flag, mode;
@@ -1229,7 +1229,7 @@ rpdtrwakeup(void *chan)
wakeup(&rp->dtr_wait);
}
-int
+static int
rpioctl(dev, cmd, data, flag, td)
dev_t dev;
u_long cmd;
diff --git a/sys/dev/rp/rp_isa.c b/sys/dev/rp/rp_isa.c
index bbbdcb2108038..3e40c318f7abd 100644
--- a/sys/dev/rp/rp_isa.c
+++ b/sys/dev/rp/rp_isa.c
@@ -476,7 +476,7 @@ rp_isa_aiop2off(int aiop, int offset)
}
/* Read the int status for an ISA controller. */
-unsigned char
+static unsigned char
rp_isa_ctlmask(CONTROLLER_t *ctlp)
{
return sGetControllerIntStatus(rp_controller,ctlp);
diff --git a/sys/dev/rp/rp_pci.c b/sys/dev/rp/rp_pci.c
index fa25dea4f6f2a..0e10266b466d3 100644
--- a/sys/dev/rp/rp_pci.c
+++ b/sys/dev/rp/rp_pci.c
@@ -338,7 +338,7 @@ rp_pci_aiop2off(int aiop, int offset)
}
/* Read the int status for a PCI controller. */
-unsigned char
+static unsigned char
rp_pci_ctlmask(CONTROLLER_t *ctlp)
{
return sPCIGetControllerIntStatus(ctlp);