summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2008-06-12 20:03:49 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2008-06-12 20:03:49 +0000
commitc03ea754147b42148781159cf5f5e3aac0a77121 (patch)
tree8df515afacd55a8906f5e89fc7743894227be34b /sys/arch/i386
parente70160a1454e591a30710c5e801480b7f48a3a02 (diff)
Enable /dev/video* for all USB capable archs. MAKEDEV bits will follow
shortly. OK todd@
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/i386/conf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c
index 816bbed733b..0194ccecc87 100644
--- a/sys/arch/i386/i386/conf.c
+++ b/sys/arch/i386/i386/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.125 2008/05/21 18:49:47 kettenis Exp $ */
+/* $OpenBSD: conf.c,v 1.126 2008/06/12 20:03:48 mglocker Exp $ */
/* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */
/*
@@ -146,6 +146,7 @@ cdev_decl(cy);
cdev_decl(mcd);
#include "tun.h"
#include "audio.h"
+#include "video.h"
#include "midi.h"
#include "sequencer.h"
cdev_decl(music);
@@ -256,7 +257,7 @@ struct cdevsw cdevsw[] =
#else
cdev_notdef(), /* 43 */
#endif
- cdev_notdef(), /* 44 */
+ cdev_video_init(NVIDEO,video), /* 44: generic video I/O */
cdev_random_init(1,random), /* 45: random data source */
cdev_ocis_init(NPCTR,pctr), /* 46: pentium performance counters */
cdev_disk_init(NRD,rd), /* 47: ram disk driver */