3 $XFree86: xc/programs/Xserver/hw/xfree86/etc/scanpci.c,v 3.34.2.17 1998/11/10 11:55:40 dawes Exp $
4 Modified for readability by Nick Kurshev
8 #include <machine/console.h>
15 static __inline__
int enable_os_io(void)
18 if ((io_fd
= open("/dev/console", O_RDWR
, 0)) < 0) {
19 perror("/dev/console");
22 if (ioctl(io_fd
, KDENABIO
, 0) < 0) {
23 perror("ioctl(KDENABIO)");
29 static __inline__
int disable_os_io(void)
31 if (ioctl(io_fd
, KDDISABIO
, 0) < 0) {
32 perror("ioctl(KDDISABIO)");