diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-06-24 19:00:34 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-06-24 19:00:34 +0000 |
commit | dad152d741548bdbb51795e095bfa2f7569a4ee1 (patch) | |
tree | 6e786f5d2ac5361c1030b0e523783078b98f2602 /sys/arch/macppc | |
parent | 31afed833105b0a4c1e43fe6b85d956d03e6d116 (diff) |
move cdev_decl() for usb devices into one place.
usage of cdev_decl() in the driver code is more tricky since i have
kqueue mods here and there and will fix that on that way through.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/macppc/conf.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/sys/arch/macppc/macppc/conf.c b/sys/arch/macppc/macppc/conf.c index 1d33e6b0cbf..eb4e368b9ce 100644 --- a/sys/arch/macppc/macppc/conf.c +++ b/sys/arch/macppc/macppc/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.14 2002/06/19 02:52:23 mickey Exp $ */ +/* $OpenBSD: conf.c,v 1.15 2002/06/24 19:00:33 mickey Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom @@ -119,19 +119,12 @@ cdev_decl(xfs_dev); #include "ksyms.h" cdev_decl(ksyms); #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 "inet.h" |