diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2002-01-04 16:00:35 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2002-01-04 16:00:35 +0000 |
commit | a3bb70a708c8dded283b192db311d41b42803fac (patch) | |
tree | 98d66c891db82abb04a67b43bf204efa621fa3ed /sys/arch/sparc64 | |
parent | 88b6b5c028cb7c2150858f8bafd68324df8c1817 (diff) |
oops, move cdev_decls to conf.h
Diffstat (limited to 'sys/arch/sparc64')
-rw-r--r-- | sys/arch/sparc64/include/conf.h | 10 | ||||
-rw-r--r-- | sys/arch/sparc64/sparc64/conf.c | 9 |
2 files changed, 10 insertions, 9 deletions
diff --git a/sys/arch/sparc64/include/conf.h b/sys/arch/sparc64/include/conf.h index 9981c390c7c..b0c50871568 100644 --- a/sys/arch/sparc64/include/conf.h +++ b/sys/arch/sparc64/include/conf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.h,v 1.6 2001/12/11 23:19:02 miod Exp $ */ +/* $OpenBSD: conf.h,v 1.7 2002/01/04 16:00:34 jason Exp $ */ /* $NetBSD: conf.h,v 1.9 2001/03/26 12:33:26 lukem Exp $ */ /*- @@ -97,3 +97,11 @@ cdev_decl(sabtty); cdev_decl(pcons); cdev_decl(com); + +cdev_decl(usb); +cdev_decl(uhid); +cdev_decl(ugen); +cdev_decl(ulpt); +cdev_decl(urio); +cdev_decl(ucom); +cdev_decl(uscanner); diff --git a/sys/arch/sparc64/sparc64/conf.c b/sys/arch/sparc64/sparc64/conf.c index faa34a2315e..30fe8856d4e 100644 --- a/sys/arch/sparc64/sparc64/conf.c +++ b/sys/arch/sparc64/sparc64/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.18 2002/01/04 15:57:19 jason Exp $ */ +/* $OpenBSD: conf.c,v 1.19 2002/01/04 16:00:34 jason Exp $ */ /* $NetBSD: conf.c,v 1.17 2001/03/26 12:33:26 lukem Exp $ */ /* @@ -109,19 +109,12 @@ #include "ses.h" #include "usb.h" -cdev_decl(usb); #include "uhid.h" -cdev_decl(uhid); #include "ugen.h" -cdev_decl(ugen); #include "ulpt.h" -cdev_decl(ulpt); #include "urio.h" -cdev_decl(urio); #include "ucom.h" -cdev_decl(ucom); #include "uscanner.h" -cdev_decl(uscanner); #include "pf.h" |