From owner-svn-src-all@FreeBSD.ORG Wed Dec 9 22:38:03 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58CAA106568F; Wed, 9 Dec 2009 22:38:03 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3D5738FC15; Wed, 9 Dec 2009 22:38:03 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nB9Mc37C042045; Wed, 9 Dec 2009 22:38:03 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nB9Mc3vO042039; Wed, 9 Dec 2009 22:38:03 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200912092238.nB9Mc3vO042039@svn.freebsd.org> From: Andrew Thompson Date: Wed, 9 Dec 2009 22:38:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r200329 - stable/8/sys/dev/usb/controller X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Dec 2009 22:38:03 -0000 Author: thompsa Date: Wed Dec 9 22:38:02 2009 New Revision: 200329 URL: http://svn.freebsd.org/changeset/base/200329 Log: MFC r199673 Initialise variable before use. Submitted by: Hans Petter Selasky Modified: stable/8/sys/dev/usb/controller/at91dci.c stable/8/sys/dev/usb/controller/atmegadci.c stable/8/sys/dev/usb/controller/avr32dci.c stable/8/sys/dev/usb/controller/musb_otg.c stable/8/sys/dev/usb/controller/uss820dci.c Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) Modified: stable/8/sys/dev/usb/controller/at91dci.c ============================================================================== --- stable/8/sys/dev/usb/controller/at91dci.c Wed Dec 9 22:37:06 2009 (r200328) +++ stable/8/sys/dev/usb/controller/at91dci.c Wed Dec 9 22:38:02 2009 (r200329) @@ -894,6 +894,7 @@ at91dci_setup_standard_chain(struct usb_ /* setup temp */ + temp.pc = NULL; temp.td = NULL; temp.td_next = xfer->td_start[0]; temp.offset = 0; Modified: stable/8/sys/dev/usb/controller/atmegadci.c ============================================================================== --- stable/8/sys/dev/usb/controller/atmegadci.c Wed Dec 9 22:37:06 2009 (r200328) +++ stable/8/sys/dev/usb/controller/atmegadci.c Wed Dec 9 22:38:02 2009 (r200329) @@ -797,6 +797,7 @@ atmegadci_setup_standard_chain(struct us /* setup temp */ + temp.pc = NULL; temp.td = NULL; temp.td_next = xfer->td_start[0]; temp.offset = 0; Modified: stable/8/sys/dev/usb/controller/avr32dci.c ============================================================================== --- stable/8/sys/dev/usb/controller/avr32dci.c Wed Dec 9 22:37:06 2009 (r200328) +++ stable/8/sys/dev/usb/controller/avr32dci.c Wed Dec 9 22:38:02 2009 (r200329) @@ -767,6 +767,7 @@ avr32dci_setup_standard_chain(struct usb /* setup temp */ + temp.pc = NULL; temp.td = NULL; temp.td_next = xfer->td_start[0]; temp.offset = 0; Modified: stable/8/sys/dev/usb/controller/musb_otg.c ============================================================================== --- stable/8/sys/dev/usb/controller/musb_otg.c Wed Dec 9 22:37:06 2009 (r200328) +++ stable/8/sys/dev/usb/controller/musb_otg.c Wed Dec 9 22:38:02 2009 (r200329) @@ -1144,6 +1144,7 @@ musbotg_setup_standard_chain(struct usb_ /* setup temp */ + temp.pc = NULL; temp.td = NULL; temp.td_next = xfer->td_start[0]; temp.offset = 0; Modified: stable/8/sys/dev/usb/controller/uss820dci.c ============================================================================== --- stable/8/sys/dev/usb/controller/uss820dci.c Wed Dec 9 22:37:06 2009 (r200328) +++ stable/8/sys/dev/usb/controller/uss820dci.c Wed Dec 9 22:38:02 2009 (r200329) @@ -858,6 +858,7 @@ uss820dci_setup_standard_chain(struct us /* setup temp */ + temp.pc = NULL; temp.td = NULL; temp.td_next = xfer->td_start[0]; temp.offset = 0;