summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsos <sos@FreeBSD.org>1994-09-29 08:59:33 +0000
committersos <sos@FreeBSD.org>1994-09-29 08:59:33 +0000
commitb4b2ad573d8d8fe4f37b08821e935913f2d1aaaf (patch)
tree18a414b8b2d81cf67b6f9e01d9c26ad33cf4fc4f
parentcab475507fe9503c43ebdabcbfb3453f52eb2473 (diff)
downloadFreeBSD-src-b4b2ad573d8d8fe4f37b08821e935913f2d1aaaf.zip
FreeBSD-src-b4b2ad573d8d8fe4f37b08821e935913f2d1aaaf.tar.gz
Added pcaselect call.
-rw-r--r--sys/i386/i386/conf.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/i386/i386/conf.c b/sys/i386/i386/conf.c
index b0bb46b..121e4b7 100644
--- a/sys/i386/i386/conf.c
+++ b/sys/i386/i386/conf.c
@@ -41,7 +41,7 @@
* SUCH DAMAGE.
*
* from: @(#)conf.c 5.8 (Berkeley) 5/12/91
- * $Id: conf.c,v 1.33 1994/09/21 01:33:00 jkh Exp $
+ * $Id: conf.c,v 1.34 1994/09/28 22:44:35 wollman Exp $
*/
#include <sys/param.h>
@@ -463,11 +463,13 @@ d_open_t pcaopen;
d_close_t pcaclose;
d_rdwr_t pcawrite;
d_ioctl_t pcaioctl;
+d_select_t pcaselect;
#else
#define pcaopen (d_open_t *)enxio
#define pcaclose (d_close_t *)enxio
#define pcawrite (d_rdwr_t *)enxio
#define pcaioctl (d_ioctl_t *)enxio
+#define pcaselect (d_select_t *)enxio
#endif
#include "mse.h"
@@ -625,7 +627,7 @@ struct cdevsw cdevsw[] =
bpfselect, nommap, NULL },
{ pcaopen, pcaclose, noread, pcawrite, /*24*/
pcaioctl, nostop, nullreset, NULL, /* pcaudio */
- seltrue, nommap, NULL },
+ pcaselect, nommap, NULL },
{ (d_open_t *)enxio, (d_close_t *)enxio, (d_rdwr_t *)enxio, /*25*/
(d_rdwr_t *)enxio, (d_ioctl_t *)enxio, (d_stop_t *)enxio, /* unused */
(d_reset_t *)enxio, NULL, (d_select_t *)enxio,
OpenPOWER on IntegriCloud