On Nov 28, 2010, at 2:20 PM, Jonathan Chen wrote: > I've taken a look at the puc(4) code, and from my limited > understanding, it appears that the section that's preventing it from > being recognised is in puc.c:puc_bfe_probe(). In particular: > > /* We don't attach to single-port serial cards. */ > if (cfg->ports == PUC_PORT_1S || cfg->ports == PUC_PORT_1P) > return (EDOOFUS); > > Why is the check there? Is there something about single I/O port cards > that interacts badly with the rest of the system?
Single-port devices are handled by ppc(4) for parallel ports and uart(4) for serial ports. There's no need to have puc(4) in between. -- Marcel Moolenaar [email protected] _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[email protected]"

