mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:03:00 +00:00
Initialize flags variable to 0
svn path=/trunk/; revision=17858
This commit is contained in:
parent
8e8dbdf319
commit
7329dca76f
2 changed files with 2 additions and 2 deletions
|
@ -165,7 +165,7 @@ static int ohci_urb_enqueue (
|
||||||
urb_priv_t *urb_priv;
|
urb_priv_t *urb_priv;
|
||||||
unsigned int pipe = urb->pipe;
|
unsigned int pipe = urb->pipe;
|
||||||
int i, size = 0;
|
int i, size = 0;
|
||||||
unsigned long flags;
|
unsigned long flags = 0;
|
||||||
int retval = 0;
|
int retval = 0;
|
||||||
|
|
||||||
#ifdef OHCI_VERBOSE_DEBUG
|
#ifdef OHCI_VERBOSE_DEBUG
|
||||||
|
|
|
@ -344,7 +344,7 @@ static struct ed *ed_get (
|
||||||
struct hcd_dev *dev = (struct hcd_dev *) udev->hcpriv;
|
struct hcd_dev *dev = (struct hcd_dev *) udev->hcpriv;
|
||||||
struct ed *ed;
|
struct ed *ed;
|
||||||
unsigned ep;
|
unsigned ep;
|
||||||
unsigned long flags;
|
unsigned long flags = 0;
|
||||||
|
|
||||||
ep = usb_pipeendpoint (pipe) << 1;
|
ep = usb_pipeendpoint (pipe) << 1;
|
||||||
if (type != PIPE_CONTROL && is_out)
|
if (type != PIPE_CONTROL && is_out)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue