MFC r199673

Initialise variable before use.

Submitted by:	Hans Petter Selasky
This commit is contained in:
Andrew Thompson 2009-12-09 22:38:02 +00:00
parent b7167d5d0d
commit 4cd01f7750
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/8/; revision=200329
5 changed files with 5 additions and 0 deletions

View File

@ -894,6 +894,7 @@ at91dci_setup_standard_chain(struct usb_xfer *xfer)
/* setup temp */
temp.pc = NULL;
temp.td = NULL;
temp.td_next = xfer->td_start[0];
temp.offset = 0;

View File

@ -797,6 +797,7 @@ atmegadci_setup_standard_chain(struct usb_xfer *xfer)
/* setup temp */
temp.pc = NULL;
temp.td = NULL;
temp.td_next = xfer->td_start[0];
temp.offset = 0;

View File

@ -767,6 +767,7 @@ avr32dci_setup_standard_chain(struct usb_xfer *xfer)
/* setup temp */
temp.pc = NULL;
temp.td = NULL;
temp.td_next = xfer->td_start[0];
temp.offset = 0;

View File

@ -1144,6 +1144,7 @@ musbotg_setup_standard_chain(struct usb_xfer *xfer)
/* setup temp */
temp.pc = NULL;
temp.td = NULL;
temp.td_next = xfer->td_start[0];
temp.offset = 0;

View File

@ -858,6 +858,7 @@ uss820dci_setup_standard_chain(struct usb_xfer *xfer)
/* setup temp */
temp.pc = NULL;
temp.td = NULL;
temp.td_next = xfer->td_start[0];
temp.offset = 0;