Although USBVERBOSE was an option in the config system, usb_subr.c failed

to recognize that.  Include opt_usb.h to pick it up, rather than usb_port.h.
This commit is contained in:
Warner Losh 2005-01-20 05:03:28 +00:00
parent e01b596372
commit bec6d0ea5a
2 changed files with 2 additions and 2 deletions

View File

@ -344,8 +344,6 @@ MALLOC_DECLARE(M_USBHC);
#endif
#define USBVERBOSE
/* We don't use the soft interrupt code in FreeBSD. */
#if 0
#define USB_USE_SOFTINTR

View File

@ -49,6 +49,8 @@ __FBSDID("$FreeBSD$");
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "opt_usb.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>