mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-05 12:56:08 +00:00
Initialise variable before use.
Submitted by: Hans Petter Selasky
This commit is contained in:
parent
f12c6c2913
commit
78c94708fb
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=199673
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user