Revert 17858 and fix all warnings at once.

This fix may be strange at first sight, but original Linux code doesn't use "flags" variable at all. This fix is here only to prevent a warning and shouldn't break the behaviour of the code.

svn path=/trunk/; revision=17859
This commit is contained in:
Hervé Poussineau 2005-09-15 13:25:32 +00:00
parent 7329dca76f
commit 86ce7ba5ab
3 changed files with 3 additions and 3 deletions

View file

@ -399,7 +399,7 @@ void my_spin_lock(spinlock_t *sl);
#define spin_unlock(a) my_spin_unlock(a)
void my_spin_unlock(spinlock_t *sl);
#define spin_lock_irqsave(a,b) my_spin_lock_irqsave(a,b)
#define spin_lock_irqsave(a,b) b=0, my_spin_lock_irqsave(a,b)
void my_spin_lock_irqsave(spinlock_t *sl, int flags);
#define spin_unlock_irqrestore(a,b) my_spin_unlock(a)

View file

@ -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 = 0;
unsigned long flags;
int retval = 0;
#ifdef OHCI_VERBOSE_DEBUG

View file

@ -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 = 0;
unsigned long flags;
ep = usb_pipeendpoint (pipe) << 1;
if (type != PIPE_CONTROL && is_out)