svn commit: r200329 - stable/8/sys/dev/usb/controller

Andrew Thompson thompsa at FreeBSD.org
Wed Dec 9 14:38:03 PST 2009


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;


More information about the svn-src-all mailing list