diff options
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/conf.c | 6 | ||||
-rw-r--r-- | sys/arch/alpha/conf/GENERIC | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c index 1546c17587f..9e45d42607f 100644 --- a/sys/arch/alpha/alpha/conf.c +++ b/sys/arch/alpha/alpha/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.50 2004/06/18 20:35:50 miod Exp $ */ +/* $OpenBSD: conf.c,v 1.51 2005/11/15 14:36:48 robert Exp $ */ /* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */ /*- @@ -55,6 +55,8 @@ bdev_decl(fd); #include "raid.h" #include "ccd.h" #include "rd.h" +#include "bktr.h" +#include "radio.h" struct bdevsw bdevsw[] = { @@ -198,6 +200,8 @@ struct cdevsw cdevsw[] = cdev_ptm_init(NPTY,ptm), /* 55: pseudo-tty ptm device */ cdev_hotplug_init(NHOTPLUG,hotplug), /* 56: devices hot plugging */ cdev_crypto_init(NCRYPTO,crypto), /* 57: /dev/crypto */ + cdev_bktr_init(NBKTR,bktr), /* 58: Bt848 video capture device */ + cdev_radio_init(NRADIO,radio), /* 59: generic radio I/O */ }; int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]); diff --git a/sys/arch/alpha/conf/GENERIC b/sys/arch/alpha/conf/GENERIC index 9e4fa65f2dd..eb55cb70c12 100644 --- a/sys/arch/alpha/conf/GENERIC +++ b/sys/arch/alpha/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.157 2005/11/15 03:08:24 brad Exp $ +# $OpenBSD: GENERIC,v 1.158 2005/11/15 14:36:49 robert Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -356,6 +356,11 @@ audio* at fms? audio* at auvia? audio* at uaudio? +bktr0 at pci? + +# FM-Radio support +radio* at bktr? + # Workstation Console attachments #wsdisplay* at cfb? #wsdisplay* at sfb? |