svn commit: r323251 - head/sys/dev/bhnd/cores/usb

Landon J. Fuller landonf at FreeBSD.org
Wed Sep 6 23:43:22 UTC 2017


Author: landonf
Date: Wed Sep  6 23:43:20 2017
New Revision: 323251
URL: https://svnweb.freebsd.org/changeset/base/323251

Log:
  bhnd: Remove unsupported USB core IDs from the bhnd_usb device table.
  
  This resolves a SoC reset triggered by attempting to attach to the
  BCM5365's USB 1.1 controller.
  
  Approved by:	adrian (mentor, implicit)

Modified:
  head/sys/dev/bhnd/cores/usb/bhnd_usb.c

Modified: head/sys/dev/bhnd/cores/usb/bhnd_usb.c
==============================================================================
--- head/sys/dev/bhnd/cores/usb/bhnd_usb.c	Wed Sep  6 23:12:34 2017	(r323250)
+++ head/sys/dev/bhnd/cores/usb/bhnd_usb.c	Wed Sep  6 23:43:20 2017	(r323251)
@@ -51,11 +51,7 @@ __FBSDID("$FreeBSD$");
 
 /****************************** Variables ************************************/
 static const struct bhnd_device bhnd_usb_devs[] = {
-	BHND_DEVICE(BCM,	USB,	"USB1.1 Host/Device core",	NULL),
 	BHND_DEVICE(BCM,	USB20H,	"USB2.0 Host core",		NULL),
-	BHND_DEVICE(BCM,	USB20D,	"USB2.0 Device core",		NULL),
-	BHND_DEVICE(BCM,	USB11H,	"USB1.1 Host core",		NULL),
-	BHND_DEVICE(BCM,	USB11D,	"USB1.1 Device core",		NULL),
 	BHND_DEVICE_END
 };
 


More information about the svn-src-head mailing list