aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/fdc
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-09-28 17:15:38 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-09-28 17:15:38 +0000
commit37c841831ff323187d7f749947244f7e278a14ea (patch)
tree072f805928e7e540a4d2c0a3a7ec37f7529204a0 /sys/dev/fdc
parent069f4a68411de58c26e4d4080d0396134968830a (diff)
Notes
Diffstat (limited to 'sys/dev/fdc')
-rw-r--r--sys/dev/fdc/fdc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/fdc/fdc.c b/sys/dev/fdc/fdc.c
index 5e4d3812ba8a9..fae210c31e010 100644
--- a/sys/dev/fdc/fdc.c
+++ b/sys/dev/fdc/fdc.c
@@ -1520,7 +1520,7 @@ fd_in(struct fdc_data *fdc, int *ptr)
#endif /* FDC_DEBUG */
}
-int
+static int
out_fdc(struct fdc_data *fdc, int x)
{
int i, j, step;
@@ -1548,7 +1548,7 @@ out_fdc(struct fdc_data *fdc, int x)
* Block device driver interface functions (interspersed with even more
* auxiliary functions).
*/
-int
+static int
Fdopen(dev_t dev, int flags, int mode, struct thread *td)
{
fdu_t fdu = FDUNIT(minor(dev));
@@ -1644,7 +1644,7 @@ Fdopen(dev_t dev, int flags, int mode, struct thread *td)
return 0;
}
-int
+static int
fdclose(dev_t dev, int flags, int mode, struct thread *td)
{
fdu_t fdu = FDUNIT(minor(dev));
@@ -1657,7 +1657,7 @@ fdclose(dev_t dev, int flags, int mode, struct thread *td)
return (0);
}
-void
+static void
fdstrategy(struct bio *bp)
{
long blknum, nblocks;