summaryrefslogtreecommitdiffstats
path: root/sys/dev/joy
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-09-08 19:57:13 +0000
committerbde <bde@FreeBSD.org>1995-09-08 19:57:13 +0000
commitba0e1a6224e996289d02b9e88c91868438706b66 (patch)
tree39babd9f146d4f0a54ffae4dedd4cd608d719721 /sys/dev/joy
parent2682bb70947f41ab733310e1376a8282d43c80ee (diff)
downloadFreeBSD-src-ba0e1a6224e996289d02b9e88c91868438706b66.zip
FreeBSD-src-ba0e1a6224e996289d02b9e88c91868438706b66.tar.gz
Actually, 97 out of 304 devsw functions had benignly mismatched types.
Diffstat (limited to 'sys/dev/joy')
-rw-r--r--sys/dev/joy/joy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/joy/joy.c b/sys/dev/joy/joy.c
index 97225a8..8d0dc25 100644
--- a/sys/dev/joy/joy.c
+++ b/sys/dev/joy/joy.c
@@ -103,7 +103,7 @@ joyattach (struct isa_device *dev)
}
int
-joyopen (dev_t dev, int flag)
+joyopen (dev_t dev, int flags, int fmt, struct proc *p)
{
int unit = UNIT (dev);
int i = joypart (dev);
@@ -115,7 +115,7 @@ joyopen (dev_t dev, int flag)
return 0;
}
int
-joyclose (dev_t dev, int flag)
+joyclose (dev_t dev, int flags, int fmt, struct proc *p)
{
int unit = UNIT (dev);
int i = joypart (dev);
OpenPOWER on IntegriCloud