svn commit: r273456 - head/sys/dev/usb

Hans Petter Selasky hselasky at FreeBSD.org
Wed Oct 22 07:50:20 UTC 2014


Author: hselasky
Date: Wed Oct 22 07:50:19 2014
New Revision: 273456
URL: https://svnweb.freebsd.org/changeset/base/273456

Log:
  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

Modified:
  head/sys/dev/usb/usb.h

Modified: head/sys/dev/usb/usb.h
==============================================================================
--- head/sys/dev/usb/usb.h	Wed Oct 22 07:16:46 2014	(r273455)
+++ head/sys/dev/usb/usb.h	Wed Oct 22 07:50:19 2014	(r273456)
@@ -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 */


More information about the svn-src-all mailing list