spkr.c (86cb007f9f53a618310e56ff967339221197b416) | spkr.c (d1725ef7ffee0ca75c9ae7dfff87b09e33e800f0) |
---|---|
1/*- 2 * spkr.c -- device driver for console speaker 3 * 4 * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 5 * modified for FreeBSD by Andrew A. Chernov <ache@astral.msk.su> 6 * modified for PC98 by Kakefuda 7 */ 8 --- 6 unchanged lines hidden (view full) --- 15#include <sys/kernel.h> 16#include <sys/module.h> 17#include <sys/uio.h> 18#include <sys/conf.h> 19#include <sys/ctype.h> 20#include <sys/malloc.h> 21#include <isa/isavar.h> 22#ifdef PC98 | 1/*- 2 * spkr.c -- device driver for console speaker 3 * 4 * v1.4 by Eric S. Raymond (esr@snark.thyrsus.com) Aug 1993 5 * modified for FreeBSD by Andrew A. Chernov <ache@astral.msk.su> 6 * modified for PC98 by Kakefuda 7 */ 8 --- 6 unchanged lines hidden (view full) --- 15#include <sys/kernel.h> 16#include <sys/module.h> 17#include <sys/uio.h> 18#include <sys/conf.h> 19#include <sys/ctype.h> 20#include <sys/malloc.h> 21#include <isa/isavar.h> 22#ifdef PC98 |
23#include <pc98/pc98/pc98.h> | 23#include <pc98/cbus/cbus.h> |
24#else 25#include <i386/isa/isa.h> 26#endif 27#include <i386/isa/timerreg.h> 28#include <machine/clock.h> 29#include <machine/speaker.h> 30 31static d_open_t spkropen; --- 653 unchanged lines hidden --- | 24#else 25#include <i386/isa/isa.h> 26#endif 27#include <i386/isa/timerreg.h> 28#include <machine/clock.h> 29#include <machine/speaker.h> 30 31static d_open_t spkropen; --- 653 unchanged lines hidden --- |