From owner-svn-src-stable@FreeBSD.ORG Thu Jul 9 15:27:07 2009 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA7C710656BA; Thu, 9 Jul 2009 15:27:07 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C8B008FC13; Thu, 9 Jul 2009 15:27:07 +0000 (UTC) (envelope-from n_hibma@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n69FR7d8089170; Thu, 9 Jul 2009 15:27:07 GMT (envelope-from n_hibma@svn.freebsd.org) Received: (from n_hibma@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n69FR7Kg089168; Thu, 9 Jul 2009 15:27:07 GMT (envelope-from n_hibma@svn.freebsd.org) Message-Id: <200907091527.n69FR7Kg089168@svn.freebsd.org> From: Nick Hibma Date: Thu, 9 Jul 2009 15:27:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r195498 - stable/7/sys/dev/usb X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jul 2009 15:27:08 -0000 Author: n_hibma Date: Thu Jul 9 15:27:07 2009 New Revision: 195498 URL: http://svn.freebsd.org/changeset/base/195498 Log: Errors we would like to see during debugging. Modified: stable/7/sys/dev/usb/ohci.c Modified: stable/7/sys/dev/usb/ohci.c ============================================================================== --- stable/7/sys/dev/usb/ohci.c Thu Jul 9 15:05:50 2009 (r195497) +++ stable/7/sys/dev/usb/ohci.c Thu Jul 9 15:27:07 2009 (r195498) @@ -1381,7 +1381,7 @@ ohci_softintr(void *v) */ opipe = (struct ohci_pipe *)xfer->pipe; - DPRINTFN(15,("ohci_process_done: error cc=%d (%s)\n", + DPRINTF(("ohci_process_done: error cc=%d (%s)\n", OHCI_TD_GET_CC(le32toh(std->td.td_flags)), ohci_cc_strs[OHCI_TD_GET_CC(le32toh(std->td.td_flags))])); callout_stop(&xfer->timeout_handle);