diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-05-21 01:48:42 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-05-21 01:48:42 +0000 |
commit | 686e9b39cf113fb4287d97726093b3316d4b4480 (patch) | |
tree | 07eac7e444b63b3d32ec9a0811e17d530366568a /sys/dev/usb/controller/usb_controller.c | |
parent | bf4995d98dd2a619f6574195847e805fef2f44b2 (diff) | |
download | FreeBSD-src-686e9b39cf113fb4287d97726093b3316d4b4480.zip FreeBSD-src-686e9b39cf113fb4287d97726093b3316d4b4480.tar.gz |
Rename the usb sysctl tree from hw.usb2.* back to hw.usb.*.
Submitted by: Hans Petter Selasky
Diffstat (limited to 'sys/dev/usb/controller/usb_controller.c')
-rw-r--r-- | sys/dev/usb/controller/usb_controller.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/controller/usb_controller.c b/sys/dev/usb/controller/usb_controller.c index 66ea172..93e9c32 100644 --- a/sys/dev/usb/controller/usb_controller.c +++ b/sys/dev/usb/controller/usb_controller.c @@ -55,8 +55,8 @@ static void usb2_post_init(void *); #if USB_DEBUG static int usb2_ctrl_debug = 0; -SYSCTL_NODE(_hw_usb2, OID_AUTO, ctrl, CTLFLAG_RW, 0, "USB controller"); -SYSCTL_INT(_hw_usb2_ctrl, OID_AUTO, debug, CTLFLAG_RW, &usb2_ctrl_debug, 0, +SYSCTL_NODE(_hw_usb, OID_AUTO, ctrl, CTLFLAG_RW, 0, "USB controller"); +SYSCTL_INT(_hw_usb_ctrl, OID_AUTO, debug, CTLFLAG_RW, &usb2_ctrl_debug, 0, "Debug level"); #endif |