Subject: missed driver in i386/conf.c
To: None <port-i386@NetBSD.ORG>
From: Rolf Grossmann <grossman@informatik.tu-muenchen.de>
List: port-i386
Date: 04/24/1995 20:50:51
Hi,
after commenting out the cy driver in /sys/dev/isa/files.isa cy.h is not
created anymore, breaking i386/conf.c. The following patch fixes this.
Bye, Rolf
P.S: Should I mail such bugs using send-pr?
*** conf.c.orig Sun Apr 23 21:50:56 1995
--- conf.c Mon Apr 24 20:42:31 1995
***************
*** 158,165 ****
--- 158,167 ----
cdev_decl(lms);
#include "pms.h"
cdev_decl(pms);
+ /* driver is broken
#include "cy.h"
cdev_decl(cy);
+ */
cdev_decl(mcd);
#include "tun.h"
cdev_decl(tun);
***************
*** 210,216 ****
--- 212,222 ----
cdev_mouse_init(NMMS,mms), /* 35: Microsoft mouse */
cdev_mouse_init(NLMS,lms), /* 36: Logitech mouse */
cdev_mouse_init(NPMS,pms), /* 37: PS/2 mouse */
+ #if 0
cdev_tty_init(NCY,cy), /* 38: Cyclom serial port */
+ #else
+ cdev_notdef(), /* 38 */
+ #endif
cdev_disk_init(NMCD,mcd), /* 39: Mitsumi CD-ROM */
cdev_bpftun_init(NTUN,tun), /* 40: network tunnel */
cdev_disk_init(NVND,vnd), /* 41: vnode disk driver */