diff options
author | hselasky <hselasky@FreeBSD.org> | 2014-10-22 07:50:19 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2014-10-22 07:50:19 +0000 |
commit | 54601af653af8910f47cfe943dfbef15bd8d4775 (patch) | |
tree | b15e6c95af11343909c97f98de70320133b5570b /sys/dev/usb | |
parent | 2d5dda33e3997bb05ee6f800a6f31372649693cd (diff) | |
download | FreeBSD-src-54601af653af8910f47cfe943dfbef15bd8d4775.zip FreeBSD-src-54601af653af8910f47cfe943dfbef15bd8d4775.tar.gz |
Actually change the USB_PORT_ROOT_RESET_DELAY definition as stated in
the r241987 commit message, instead of having users locally overriding
the value using tunables in /boot/loader.conf .
Found by: Adam Parco
Discussed with: Nick Hibma
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/usb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usb.h b/sys/dev/usb/usb.h index eb664f7..7ff3ccd 100644 --- a/sys/dev/usb/usb.h +++ b/sys/dev/usb/usb.h @@ -113,7 +113,7 @@ MALLOC_DECLARE(M_USBHC); /* Allow for marginal and non-conforming devices. */ #define USB_PORT_RESET_DELAY 50 /* ms */ -#define USB_PORT_ROOT_RESET_DELAY 250 /* ms */ +#define USB_PORT_ROOT_RESET_DELAY 200 /* ms */ #define USB_PORT_RESET_RECOVERY 250 /* ms */ #define USB_PORT_POWERUP_DELAY 300 /* ms */ #define USB_PORT_RESUME_DELAY (20*2) /* ms */ |