Date: Wed, 6 Sep 2017 23:43:20 +0000 (UTC) From: "Landon J. Fuller" <landonf@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r323251 - head/sys/dev/bhnd/cores/usb Message-ID: <201709062343.v86NhK8Z020268@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709062343.v86NhK8Z020268>