diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-07-10 21:53:27 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-07-10 21:53:27 +0000 |
commit | 59157759861c8eeba7e890a0c1dfd4f0166854ab (patch) | |
tree | 8d1aa5e3c7a931d1f86a225ac12bb79b0cd1a6e2 | |
parent | 0bc12f2e490f35fa1d5c0b9969af5d97bd4e8220 (diff) |
proper cdev_decl(gpr)
-rw-r--r-- | sys/arch/i386/i386/conf.c | 3 | ||||
-rw-r--r-- | sys/dev/pcmcia/gpr.c | 3 | ||||
-rw-r--r-- | sys/sys/conf.h | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c index d6356407da5..b97eade3c07 100644 --- a/sys/arch/i386/i386/conf.c +++ b/sys/arch/i386/i386/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.96 2002/06/24 19:00:33 mickey Exp $ */ +/* $OpenBSD: conf.c,v 1.97 2002/07/10 21:53:26 mickey Exp $ */ /* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */ /* @@ -196,7 +196,6 @@ cdev_decl(ksyms); #include "cz.h" cdev_decl(cztty); #include "radio.h" -cdev_decl(gpr); #include "gpr.h" /* XXX -- this needs to be supported by config(8)! */ diff --git a/sys/dev/pcmcia/gpr.c b/sys/dev/pcmcia/gpr.c index 6e31160ab05..fb083fef1cc 100644 --- a/sys/dev/pcmcia/gpr.c +++ b/sys/dev/pcmcia/gpr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gpr.c,v 1.4 2002/06/17 20:41:51 fgsch Exp $ */ +/* $OpenBSD: gpr.c,v 1.5 2002/07/10 21:53:26 mickey Exp $ */ /* * Copyright (c) 2002, Federico G. Schwindt @@ -43,6 +43,7 @@ #include <sys/systm.h> #include <sys/proc.h> #include <sys/ioctl.h> +#include <sys/conf.h> #include <dev/pcmcia/pcmciavar.h> #include <dev/pcmcia/pcmciareg.h> diff --git a/sys/sys/conf.h b/sys/sys/conf.h index 6e1bc2e45d8..95a7c5cbbae 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.h,v 1.63 2002/06/29 02:58:14 mickey Exp $ */ +/* $OpenBSD: conf.h,v 1.64 2002/07/10 21:53:26 mickey Exp $ */ /* $NetBSD: conf.h,v 1.33 1996/05/03 20:03:32 christos Exp $ */ /*- @@ -582,6 +582,8 @@ cdev_decl(systrace); cdev_decl(bio); +cdev_decl(gpr); + cdev_decl(usb); cdev_decl(ugen); cdev_decl(uhid); |