diff options
Diffstat (limited to 'sys/arch/sparc/dev/spif.c')
-rw-r--r-- | sys/arch/sparc/dev/spif.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/sparc/dev/spif.c b/sys/arch/sparc/dev/spif.c index c56255e8a49..6642bcc5d81 100644 --- a/sys/arch/sparc/dev/spif.c +++ b/sys/arch/sparc/dev/spif.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spif.c,v 1.16 2003/08/15 20:32:14 tedu Exp $ */ +/* $OpenBSD: spif.c,v 1.17 2003/09/23 16:51:11 millert Exp $ */ /* * Copyright (c) 1999 Jason L. Wright (jason@thought.net) @@ -97,7 +97,7 @@ int sbppread(dev_t, struct uio *, int); int sbppwrite(dev_t, struct uio *, int); int sbpp_rw(dev_t, struct uio *); int spifppcintr(void *); -int sbppselect(dev_t, int, struct proc *); +int sbpppoll(dev_t, int, struct proc *); int sbppioctl(dev_t, u_long, caddr_t, int, struct proc *); struct cfattach spif_ca = { @@ -1075,12 +1075,12 @@ sbpp_rw(dev, uio) } int -sbppselect(dev, rw, p) +sbpppoll(dev, events, p) dev_t dev; - int rw; + int events; struct proc *p; { - return (ENODEV); + return (seltrue(dev, events, p)); } int |