mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Initialize flags variable to 0
svn path=/trunk/; revision=17858
This commit is contained in:
@@ -165,7 +165,7 @@ static int ohci_urb_enqueue (
|
||||
urb_priv_t *urb_priv;
|
||||
unsigned int pipe = urb->pipe;
|
||||
int i, size = 0;
|
||||
unsigned long flags;
|
||||
unsigned long flags = 0;
|
||||
int retval = 0;
|
||||
|
||||
#ifdef OHCI_VERBOSE_DEBUG
|
||||
|
||||
@@ -344,7 +344,7 @@ static struct ed *ed_get (
|
||||
struct hcd_dev *dev = (struct hcd_dev *) udev->hcpriv;
|
||||
struct ed *ed;
|
||||
unsigned ep;
|
||||
unsigned long flags;
|
||||
unsigned long flags = 0;
|
||||
|
||||
ep = usb_pipeendpoint (pipe) << 1;
|
||||
if (type != PIPE_CONTROL && is_out)
|
||||
|
||||
Reference in New Issue
Block a user