[linux-usb-devel] [PATCH 01/19] USB: devices misc: Trivial patch to build the IOWARRIOR when it is selected in Kconfig

2007-07-30 Thread Greg Kroah-Hartman
From: Juergen Beisert [EMAIL PROTECTED] Trivial patch to build the IOWARRIOR when it is selected in Kconfig. Signed-off-by: Juergen Beisert [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions

[linux-usb-devel] [PATCH 02/19] USB: Don't let usb-storage steal Blackberry Pearl

2007-07-30 Thread Greg Kroah-Hartman
Signed-off-by: Jeremy Katz [EMAIL PROTECTED] Signed-off-by: Phil Dibowitz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/storage/unusual_devs.h | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/drivers/usb/storage

[linux-usb-devel] [PATCH 03/19] USB: more quirky devices

2007-07-30 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] our list of devices which cannot be suspended keeps growing. Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions

[linux-usb-devel] [PATCH 04/19] USB: usb.h kernel-doc additions

2007-07-30 Thread Greg Kroah-Hartman
]' Signed-off-by: Randy Dunlap [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- include/linux/usb.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/linux/usb.h b/include/linux/usb.h index 7a60946..4f33a58 100644 --- a/include/linux/usb.h

[linux-usb-devel] [PATCH 05/19] USB: even more quirks

2007-07-30 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] The number of quirky devices seems to be large. Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git

[linux-usb-devel] [PATCH 06/19] USB: Add CanonScan LiDE30 to the quirk list

2007-07-30 Thread Greg Kroah-Hartman
From: Johann Felix Soden [EMAIL PROTECTED] This patch adds CanoScan N1240U/LiDE30 (Scanner) to the list of quirky USB devices. Signed-off-by: Johann Felix Soden [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c |2 ++ 1 files changed, 2

[linux-usb-devel] [PATCH 07/19] USB: yet another quirky device

2007-07-30 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] another quirky scanner. Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/usb/core/quirks.c b

[linux-usb-devel] [PATCH 08/19] USB: fix usb_serial_suspend(): buggy code

2007-07-30 Thread Greg Kroah-Hartman
at the code it also doesn't seem to have been intended to always return 0. Coverity is right. The check for NULL is wrongly done and the error return is lost. Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/usb-serial.c | 15

[linux-usb-devel] [PATCH 09/19] USB: fix scatterlist PIO case (IOMMU)

2007-07-30 Thread Greg Kroah-Hartman
to be a cross-arch issue here, with 64bit powerpc not using an IOMMU define ... and its IOMMU_VMERGE config can always be overridden on the kernel command line. So this is better, but still imperfect. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED

[linux-usb-devel] [PATCH 11/19] cp2101: Remove broken termios optimisation, use proper speed API

2007-07-30 Thread Greg Kroah-Hartman
From: Alan Cox [EMAIL PROTECTED] I've also enabled the commented out support for 7200, 14400, 55854, 127117 and 3686400 baud as you can now set such rates in the kernel. Signed-off-by: Alan Cox [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/cp2101.c

[linux-usb-devel] [PATCH 12/19] digi_acceleport: Drag the driver kicking and screaming into coding style

2007-07-30 Thread Greg Kroah-Hartman
-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/digi_acceleport.c | 970 ++ 1 files changed, 410 insertions(+), 560 deletions(-) diff --git a/drivers/usb/serial/digi_acceleport.c b/drivers/usb/serial/digi_acceleport.c index 976f54e..dab2e66 100644

[linux-usb-devel] [PATCH 13/19] USB: mct_u232: Convert to proper speed handling API

2007-07-30 Thread Greg Kroah-Hartman
From: Alan Cox [EMAIL PROTECTED] Signed-off-by: Alan Cox [EMAIL PROTECTED] Acked-by: Pete Zaitcev [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/mct_u232.c | 54 drivers/usb/serial/mct_u232.h |2 +- 2

[linux-usb-devel] [PATCH 14/19] USB: fix BUG: sleeping function called from invalid context at /home/jeremy/hg/xen/paravirt/linux/drivers/usb/core/urb.c:524, in_atomic():1, irqs_disabled():0

2007-07-30 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] Clearly there's a bug in drivers/usb/serial/usb-serial.c:usb_serial_put(). It shouldn't call kref_put() while holding a spinlock. Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/usb

[linux-usb-devel] [PATCH 15/19] USB: drivers/usb/serial/sierra.c: make 3 functions static

2007-07-30 Thread Greg Kroah-Hartman
From: Adrian Bunk [EMAIL PROTECTED] This patch makes three needlessly global functions static. Signed-off-by: Adrian Bunk [EMAIL PROTECTED] Cc: Kevin Lloyd [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/sierra.c |7 --- 1 files changed, 4

[linux-usb-devel] [PATCH 16/19] USB: NIKON D50 is an unusual device

2007-07-30 Thread Greg Kroah-Hartman
[EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/storage/unusual_devs.h |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index da08fcd..d8d008d 100644

[linux-usb-devel] [PATCH 17/19] USB: more pxa2xx_udc dead code removal

2007-07-30 Thread Greg Kroah-Hartman
to kick in the (documented!) double buffering capability. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/pxa2xx_udc.c | 30 -- 1 files changed, 0 insertions(+), 30 deletions(-) diff --git

[linux-usb-devel] [PATCH 18/19] usb-serial: Fix edgeport regression on non-EPiC devices

2007-07-30 Thread Greg Kroah-Hartman
-off-by: Adam Kropelin [EMAIL PROTECTED] Cc: stable [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/io_edgeport.c | 19 --- 1 files changed, 8 insertions(+), 11 deletions(-) diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb

[linux-usb-devel] [PATCH 19/19] USB: sparse cleanups for usb gadgets

2007-07-30 Thread Greg Kroah-Hartman
-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/config.c |2 +- drivers/usb/gadget/epautoconf.c |2 +- drivers/usb/gadget/ether.c |3 ++- drivers/usb/gadget/inode.c |4 ++-- drivers/usb/gadget/m66592-udc.c |2 +- drivers/usb/gadget/zero.c

[linux-usb-devel] [PATCH 01/44] USB: use mutex instead of semaphore in the USB gadget serial driver

2007-07-19 Thread Greg Kroah-Hartman
From: Matthias Kaehlcke [EMAIL PROTECTED] The USB gadget serial driver uses a semaphore as mutex. Use the mutex API instead of the (binary) semaphore. Signed-off-by: Matthias Kaehlcke [EMAIL PROTECTED] Acked-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED

[linux-usb-devel] [PATCH 02/44] USB: use mutex instead of semaphore in the ELAN U132 adapter driver

2007-07-19 Thread Greg Kroah-Hartman
From: Matthias Kaehlcke [EMAIL PROTECTED] The ELAN U132 adapter driver uses the semaphore u132_module_lock as mutex. Use the mutex API instead of the (binary) semaphore. Signed-off-by: Matthias Kaehlcke [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/host

[linux-usb-devel] [PATCH 03/44] USB: use mutex instead of semaphore in the Adutux driver

2007-07-19 Thread Greg Kroah-Hartman
From: Matthias Kaehlcke [EMAIL PROTECTED] The Adutux driver uses a semaphore as mutex. Use the mutex API instead of the (binary) semaphore. Signed-off-by: Matthias Kaehlcke [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/adutux.c | 35

[linux-usb-devel] [PATCH 04/44] USB: use mutex instead of semaphore in the FTDI ELAN driver

2007-07-19 Thread Greg Kroah-Hartman
From: Matthias Kaehlcke [EMAIL PROTECTED] The FTDI ELAN driver uses a semaphore as mutex. Use the mutex API instead of the (binary) semaphore. Signed-off-by: Matthias Kaehlcke [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/ftdi-elan.c | 13

[linux-usb-devel] [PATCH 05/44] USB: sierra: Add TRU-Install (c) Support

2007-07-19 Thread Greg Kroah-Hartman
From: Kevin Lloyd [EMAIL PROTECTED] This patch adds compatibility with Sierra Wireless' new TRU-Install feature. Future devices that use this feature will not work unless this patch has been applied. Signed-off-by: Kevin Lloyd [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED

[linux-usb-devel] [PATCH 06/44] USB: sierra: Add new devices

2007-07-19 Thread Greg Kroah-Hartman
From: Kevin Lloyd [EMAIL PROTECTED] This patch adds new devices to the Sierra Wireless driver. This is being resubmitted because the dependent patch (patch 01/02) needed to be resubmitted. Signed-off-by: Kevin Lloyd [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED

[linux-usb-devel] [PATCH 07/44] USB: usblp: Big cleanup breaks O_NONBLOCK

2007-07-19 Thread Greg Kroah-Hartman
is to pretend that the transfer has succeeded even if URB was merely queued. It is the same behaviour as with the old version. Signed-off-by: Pete Zaitcev [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/class/usblp.c |9 + 1 files changed, 5 insertions(+), 4

[linux-usb-devel] [PATCH 08/44] isp116x-hcd: prepare for urb-status

2007-07-19 Thread Greg Kroah-Hartman
transfers is set after the status stage rather than when the short packet arrives. Some unnecessary uses of urb-lock are removed. Signed-off-by: Alan Stern [EMAIL PROTECTED] Cc: Olav Kongas [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/host

[linux-usb-devel] [PATCH 09/44] USB: add descriptors binary sysfs attribute

2007-07-19 Thread Greg Kroah-Hartman
to be autoresumed. The last item in particular should be a big selling point for libusb, which currently forces all USB devices to be resumed as it scans the device tree. Signed-off-by: Alan Stern [EMAIL PROTECTED] Cc: Dave Mielke [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL

[linux-usb-devel] [PATCH 10/44] USB: fix warning caused by autosuspend counter going negative

2007-07-19 Thread Greg Kroah-Hartman
may already have been suspended and caused the counter to go negative. The obvious solution is to increment the counter before registering the child. Signed-off-by: Alan Stern [EMAIL PROTECTED] Cc: stable [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core

[linux-usb-devel] [PATCH 11/44] USB: mos7720, mos7840: remove redundant urb check

2007-07-19 Thread Greg Kroah-Hartman
get rid of the checks. Signed-off-by: Florin Malita [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/mos7720.c |5 - drivers/usb/serial/mos7840.c | 19 --- 2 files changed, 0 insertions(+), 24 deletions(-) diff --git a/drivers

[linux-usb-devel] [PATCH 12/44] UHCI: short control URBs get a status stage

2007-07-19 Thread Greg Kroah-Hartman
Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/host/uhci-q.c | 59 + 1 files changed, 38 insertions(+), 21 deletions(-) diff --git a/drivers/usb/host/uhci-q.c b/drivers/usb/host/uhci-q.c index 4aed305..3bb908c

[linux-usb-devel] [PATCH 13/44] USB: documentation update for usb_unlink_urb

2007-07-19 Thread Greg Kroah-Hartman
From: Alan Stern [EMAIL PROTECTED] This patch (as936) updates the kerneldoc for usb_unlink_urb. The explanation of how endpoint queues are meant to work is now clearer and in better agreement with reality. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL

[linux-usb-devel] [PATCH 15/44] USB: MAINTAINERS entry for amd5536udc

2007-07-19 Thread Greg Kroah-Hartman
From: Thomas Dahlmann [EMAIL PROTECTED] MAINTAINERS entry for amd5536udc driver. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- MAINTAINERS |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b

[linux-usb-devel] [PATCH 16/44] USB: Remove pointless conditional in drivers/usb/serial/io_ti.c::edge_shutdown()

2007-07-19 Thread Greg Kroah-Hartman
passed NULL pointers. This patch removes the pointless conditional (and also makes a few tiny style corrections now that I was in the area anyway). Signed-off-by: Jesper Juhl [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/io_ti.c | 10 -- 1

[linux-usb-devel] [PATCH 17/44] USB: usb-storage: unusual_devs entry for Nikon D100

2007-07-19 Thread Greg Kroah-Hartman
From: Alan Stern [EMAIL PROTECTED] This patch (as938) adds an unusual_devs entry for the Nikon DSC D100. Signed-off-by: Alan Stern [EMAIL PROTECTED] Cc: Phil Dibowitz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/storage/unusual_devs.h |7 +++ 1

[linux-usb-devel] [PATCH 19/44] USB: atm: cxacru: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/atm/cxacru.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/usb/atm

[linux-usb-devel] [PATCH 20/44] USB: atm: speedtch: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/atm/speedtch.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/usb

[linux-usb-devel] [PATCH 21/44] USB: atm: ueagle-atm: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/atm/ueagle-atm.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/usb

[linux-usb-devel] [PATCH 22/44] USB: atm: usbatm: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/atm/usbatm.c | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/usb

[linux-usb-devel] [PATCH 23/44] USB: class: cdc-acm: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/class/cdc-acm.c | 18 ++ 1 files changed, 10 insertions(+), 8 deletions(-) diff --git

[linux-usb-devel] [PATCH 24/44] USB: class: usblp: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/class/usblp.c | 18 ++ 1 files changed, 10 insertions(+), 8 deletions(-) diff --git

[linux-usb-devel] [PATCH 25/44] USB: storage: onetouch: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/storage/onetouch.c | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff --git

[linux-usb-devel] [PATCH 26/44] USB: image: mdc800: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/image/mdc800.c | 45 --- 1 files changed, 21 insertions(+), 24

[linux-usb-devel] [PATCH 27/44] USB: image: microtek: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/image/microtek.c | 19 ++- 1 files changed, 10 insertions(+), 9 deletions(-) diff --git

[linux-usb-devel] [PATCH 28/44] USB: core: message: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/message.c | 34 ++ 1 files changed, 18 insertions(+), 16 deletions

[linux-usb-devel] [PATCH 29/44] USB: misc: adtux: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/adutux.c | 24 +--- 1 files changed, 13 insertions(+), 11 deletions(-) diff

[linux-usb-devel] [PATCH 30/44] USB: misc: appledisplay: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/appledisplay.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git

[linux-usb-devel] [PATCH 31/44] USB: misc: auerswald: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/auerswald.c | 25 +++-- 1 files changed, 15 insertions(+), 10 deletions(-) diff

[linux-usb-devel] [PATCH 32/44] USB: misc: ftdi-elan: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/ftdi-elan.c |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers

[linux-usb-devel] [PATCH 33/44] USB: misc: iowarrior: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/iowarrior.c | 21 - 1 files changed, 12 insertions(+), 9 deletions(-) diff

[linux-usb-devel] [PATCH 34/44] USB: misc: ldusb: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/ldusb.c | 20 +++- 1 files changed, 11 insertions(+), 9 deletions(-) diff --git

[linux-usb-devel] [PATCH 35/44] USB: misc: legousbtower: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/legousbtower.c | 28 +++- 1 files changed, 15 insertions(+), 13 deletions

[linux-usb-devel] [PATCH 44/44] USB: drivers/usb/storage/dpcm.c whitespace cleanup

2007-07-19 Thread Greg Kroah-Hartman
From: S.Caglar Onur [EMAIL PROTECTED] Following trivial patch converts smarttabs/whitespaces into real tabs. Signed-off-by: S.Caglar Onur [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/storage/dpcm.c | 56 ++-- 1

[linux-usb-devel] [PATCH 38/44] USB: misc: usblcd: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/usblcd.c | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers

[linux-usb-devel] [PATCH 37/44] USB: misc: phidgetmotorcontrol: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/phidgetmotorcontrol.c | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff

[linux-usb-devel] [PATCH 36/44] USB: misc: phidgetkit: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/phidgetkit.c | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff --git

[linux-usb-devel] [PATCH 39/44] USB: misc: usbtest: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/usbtest.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/misc

[linux-usb-devel] [PATCH 40/44] USB: misc: uss720: clean up urb-status usage

2007-07-19 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/misc/uss720.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/usb/misc

[linux-usb-devel] [PATCH 41/44] USB: move routines in hcd.c

2007-07-19 Thread Greg Kroah-Hartman
[EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/hcd.c | 82 1 files changed, 41 insertions(+), 41 deletions(-) diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index 963520f..032b118 100644

[linux-usb-devel] [PATCH 42/44] USB: change name of spinlock in hcd.c

2007-07-19 Thread Greg Kroah-Hartman
PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/hcd.c | 49 +-- 1 files changed, 26 insertions(+), 23 deletions(-) diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index 032b118..42ef1d5 100644 --- a/drivers

[linux-usb-devel] [PATCH 43/44] USB: r8a66597-hcd: fixes some problem

2007-07-19 Thread Greg Kroah-Hartman
Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/host/r8a66597-hcd.c | 110 +++ drivers/usb/host/r8a66597.h | 87 +++ 2 files changed, 96 insertions(+), 101 deletions(-) diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers

[linux-usb-devel] [PATCH 127/149] USB: fix gregkh-usb-usb-use-menuconfig-objects

2007-07-12 Thread Greg Kroah-Hartman
From: Jan Engelhardt [EMAIL PROTECTED] Generally, Jens Axboe was against 'default y', so I'll have some patches to remove it. Cc: Jens Axboe [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/Kconfig |1 - 1

[linux-usb-devel] [PATCH 128/149] USB: drivers/block/ub.c: use list_for_each_entry()

2007-07-12 Thread Greg Kroah-Hartman
] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/block/ub.c | 12 +++- 1 files changed, 3 insertions(+), 9 deletions(-) diff --git a/drivers/block/ub.c b/drivers/block/ub.c index 746a118..18c8b6c 100644 --- a/drivers/block/ub.c +++ b/drivers/block/ub.c @@ -1547,10 +1547,8

[linux-usb-devel] [PATCH 136/149] USB: remove Makefile reference to obsolete OHCI_AT91

2007-07-12 Thread Greg Kroah-Hartman
From: Robert P. J. Day [EMAIL PROTECTED] Signed-off-by: Robert P. J. Day [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/Makefile |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers

[linux-usb-devel] [PATCH 138/149] USB: usb/dma doc updates

2007-07-12 Thread Greg Kroah-Hartman
, everything already avoids highmem. But it'd be nice if x86_32 systems with much physical memory could use it directly with network adapters and mass storage devices. (Patch, anyone?) Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED

[linux-usb-devel] [PATCH 149/149] USB: ohci-pnx4008: Remove unnecessary cast of return value of kzalloc

2007-07-12 Thread Greg Kroah-Hartman
From: Suresh Jayaraman [EMAIL PROTECTED] Remove unnecessary cast of return value of kzalloc() in usb/host/ohci-pnx4008.c Signed-off-by: Suresh Jayaraman [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/host/ohci-pnx4008.c |2 +- 1 files changed, 1

[linux-usb-devel] [PATCH 148/149] USB: additions to the quirk list

2007-07-12 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] this adds some scanners reported to be crashed by autosuspend to the quirk list. Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c |8 1 files changed, 8 insertions

[linux-usb-devel] [PATCH 147/149] usb-storage: implement autosuspend

2007-07-12 Thread Greg Kroah-Hartman
From: Alan Stern [EMAIL PROTECTED] This patch (as930) implements autosuspend for usb-storage. It is adapted from a patch by Oliver Neukum. Autosuspend is allowed except during LUN scanning, resets, and command execution. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah

[linux-usb-devel] [PATCH 146/149] USB: cdc-acm: add new device id to option driver

2007-07-12 Thread Greg Kroah-Hartman
From: Andrey Arapov [EMAIL PROTECTED] USB: add new device id to option driver device is Samsung X180 China cellphone Signed-off-by: Andrey Arapov [EMAIL PROTECTED] Acked-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/class/cdc-acm.c

[linux-usb-devel] [PATCH 145/149] USB: goku_udc trivial cleanups

2007-07-12 Thread Greg Kroah-Hartman
From: David Brownell [EMAIL PROTECTED] Minor fixes to goku_udc ... whitespace, let -DDEBUG do its thing, check the return value of device_register(), sparse tweaks. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget

[linux-usb-devel] [PATCH 144/149] USB: usb gadget stack can now -DDEBUG with Kconfig

2007-07-12 Thread Greg Kroah-Hartman
idiosyncracies in this area ... other than the RNDIS code, which defined its own DEBUG() macro in a broken way. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/Kconfig | 14 drivers/usb/gadget/Makefile |4

[linux-usb-devel] [PATCH 143/149] usb gadget stack: remove usb_ep_*_buffer(), part 2

2007-07-12 Thread Greg Kroah-Hartman
this is that gadget drivers wouldn't have specific knowledge that the controller drivers have: endpoints that aren't dma-capable don't need any dma mappings at all. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/at91_udc.c

[linux-usb-devel] [PATCH 142/149] usb gadget stack: remove usb_ep_*_buffer(), part 1

2007-07-12 Thread Greg Kroah-Hartman
is thus a simplification and improvement. Note that the gmidi.c driver had a bug in this area; fixed. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/file_storage.c | 19 drivers/usb/gadget/gmidi.c

[linux-usb-devel] [PATCH 141/149] USB: pxa2xx_udc -- cleanups, mostly removing dma hooks

2007-07-12 Thread Greg Kroah-Hartman
effectively been dead code for several years now ... no point in keeping it around. Signed-off-by: David Brownell [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/pxa2xx_udc.c | 387 +++ drivers/usb/gadget/pxa2xx_udc.h

[linux-usb-devel] [PATCH 139/149] USB: quirk for samsung printer

2007-07-12 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] this printer does not survive suspension. Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/usb

[linux-usb-devel] [PATCH 137/149] USB: drivers/usb/storage/unusual_devs.h whitespace cleanup

2007-07-12 Thread Greg Kroah-Hartman
From: S.Caglar Onur [EMAIL PROTECTED] Following patch removes trailing whitespaces at the ends of lines and converts smarttabs/whitespaces into real tabs. Signed-off-by: S.Caglar Onur [EMAIL PROTECTED] Signed-off-by: Phil Dibowitz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL

[linux-usb-devel] [PATCH 135/149] USB: io_*: remove bogus termios no change checks

2007-07-12 Thread Greg Kroah-Hartman
From: Alan Cox [EMAIL PROTECTED] Signed-off-by: Alan Cox [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/io_edgeport.c |9 - drivers/usb/serial/io_ti.c |8 2 files changed

[linux-usb-devel] [PATCH 134/149] USB: mos7720: remove bogus no termios change check

2007-07-12 Thread Greg Kroah-Hartman
From: Alan Cox [EMAIL PROTECTED] Signed-off-by: Alan Cox [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/mos7720.c | 10 -- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git

[linux-usb-devel] [PATCH 130/149] USB: make the usb_device numa_node get assigned from controller

2007-07-12 Thread Greg Kroah-Hartman
Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/usb.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c index 4a6299b..c611b3c 100644 --- a/drivers/usb/core/usb.c +++ b/drivers/usb

[linux-usb-devel] [PATCH 129/149] USB: ftdi_sio: fix oops due to processing workarounds too early

2007-07-12 Thread Greg Kroah-Hartman
. Addresses bug 8564 Cc: [EMAIL PROTECTED] Signed-off-by: Andrew Morton [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/ftdi_sio.c | 104 +--- 1 files changed, 44 insertions(+), 60 deletions(-) diff --git a/drivers

[linux-usb-devel] [PATCH 126/149] USB: Make usb-autosuspend timer 1 sec jiffy aligned

2007-07-12 Thread Greg Kroah-Hartman
-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/driver.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c index a3aed8d..73c4936 100644 --- a/drivers/usb/core/driver.c +++ b/drivers/usb/core/driver.c

[linux-usb-devel] [PATCH 125/149] USB: Don't autosuspend Blackberry devices.

2007-07-12 Thread Greg Kroah-Hartman
From: Jeremy Katz [EMAIL PROTECTED] Blackberry devices charge over USB. By autosuspending the port, they are not able to charge reliably. Signed-off-by: Jeremy Katz [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/quirks.c |5 + 1 files changed

[linux-usb-devel] [PATCH 123/149] USB: add IAD support to usbfs and sysfs

2007-07-12 Thread Greg Kroah-Hartman
PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/config.c | 15 +++ drivers/usb/core/devices.c | 26 ++ drivers/usb/core/message.c | 31 +++ drivers/usb/core/sysfs.c | 34

[linux-usb-devel] [PATCH 122/149] USB: mos7720: change developer email addresses

2007-07-12 Thread Greg Kroah-Hartman
Update the original developer's email addresses at their request. Cc: Vijaya Kumar [EMAIL PROTECTED] Cc: Ajay Kumar [EMAIL PROTECTED] Cc: Gurudeva [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/mos7720.c |6 +++--- 1 files changed, 3 insertions

[linux-usb-devel] [PATCH 120/149] USB: Don't resume root hub if the controller is suspended

2007-07-12 Thread Greg Kroah-Hartman
have any effect on them. Signed-off-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/hcd.c |5 - drivers/usb/gadget/dummy_hcd.c |3 +-- drivers/usb/host/ehci-hub.c|4 drivers/usb/host/uhci-hcd.c|5

[linux-usb-devel] [PATCH 119/149] USB: Remove usages of dev-power.power_state

2007-07-12 Thread Greg Kroah-Hartman
Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/driver.c |6 +- drivers/usb/core/hcd.c| 10 -- 2 files changed, 1 insertions(+), 15 deletions(-) diff --git a/drivers/usb/core/driver.c b/drivers/usb/core/driver.c index 3cd9af2..a3aed8d 100644 --- a/drivers/usb/core/driver.c

[linux-usb-devel] [PATCH 117/149] USB: Pete's taking over usblp

2007-07-12 Thread Greg Kroah-Hartman
From: Pete Zaitcev [EMAIL PROTECTED] Vojtech agreed to pass usblp over to me, so if you find bugs don't bug him. Signed-off-by: Pete Zaitcev [EMAIL PROTECTED] Signed-off-by: Vojtech Pavlik [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- MAINTAINERS |8 1

[linux-usb-devel] [PATCH 114/149] usb gadget: Rename husb2dev - usba

2007-07-12 Thread Greg Kroah-Hartman
-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/gadget/ether.c|2 +- drivers/usb/gadget/gadget_chips.h |8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/usb/gadget/ether.c b/drivers/usb/gadget/ether.c index 78e2402..dbaf867 100644 --- a/drivers

[linux-usb-devel] [PATCH 113/149] USB: Add URB_FREE_BUFFER flag and the logic behind it

2007-07-12 Thread Greg Kroah-Hartman
flag URB_FREE_BUFFER enables this behavior. Signed-off-by: Marcel Holtmann [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/urb.c |3 +++ include/linux/usb.h|1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/usb/core

[linux-usb-devel] [PATCH 112/149] USB: Fix up full-speed bInterval values in high-speed interrupt descriptor

2007-07-12 Thread Greg Kroah-Hartman
Pinchart [EMAIL PROTECTED] Acked-by: Alan Stern [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/core/config.c | 12 +--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c index 9152e12

[linux-usb-devel] [PATCH 110/149] USB: usb-skeleton use anchors in suspend/resume handling

2007-07-12 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] use anchors in suspend/resume handling Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/usb-skeleton.c | 42 +- 1 files changed, 37 insertions(+), 5

[linux-usb-devel] [PATCH 109/149] USB: usb-skeleton: use anchors in disconnect handling

2007-07-12 Thread Greg Kroah-Hartman
From: Oliver Neukum [EMAIL PROTECTED] use anchors in disconnect handling Signed-off-by: Oliver Neukum [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/usb-skeleton.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/usb/usb

[linux-usb-devel] [PATCH 105/149] USB: sierra: cleanup the startup and shutdown path

2007-07-12 Thread Greg Kroah-Hartman
savings.) All in all, this saved over 40 lines of code and cleaned things up better. Cc: Kevin Lloyd [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/sierra.c | 130 ++- 1 files changed, 41 insertions(+), 89

[linux-usb-devel] [PATCH 104/149] USB: sierra: remove incorrect usage of the urb status field

2007-07-12 Thread Greg Kroah-Hartman
by keeping the hardware queue full easier. As a benefit, this reduces the size of the driver. Cc: Kevin Lloyd [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/sierra.c | 221 +-- 1 files changed, 107 insertions(+), 114

[linux-usb-devel] [PATCH 103/149] USB: serial: whiteheat: clean up urb-status usage

2007-07-12 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Cc: linux-usb-devel@lists.sourceforge.net Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/whiteheat.c | 25 - 1 files

[linux-usb-devel] [PATCH 102/149] USB: serial: visor: clean up urb-status usage

2007-07-12 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Cc: linux-usb-devel@lists.sourceforge.net Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/visor.c | 20 1 files changed, 12

[linux-usb-devel] [PATCH 098/149] USB: serial: pl2303: clean up urb-status usage

2007-07-12 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Cc: linux-usb-devel@lists.sourceforge.net Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/pl2303.c | 42

[linux-usb-devel] [PATCH 097/149] USB: serial: oti6858: clean up urb-status usage

2007-07-12 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Cc: linux-usb-devel@lists.sourceforge.net Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/oti6858.c | 35 ++- 1

[linux-usb-devel] [PATCH 096/149] USB: serial: option: clean up urb-status usage

2007-07-12 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Cc: linux-usb-devel@lists.sourceforge.net Cc: Matthias Urlichs [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/option.c | 14

[linux-usb-devel] [PATCH 092/149] USB: serial: mos7720: clean up urb-status usage

2007-07-12 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Cc: linux-usb-devel@lists.sourceforge.net Cc: VijayaKumar G.N. [EMAIL PROTECTED] Cc: AjayKumar [EMAIL PROTECTED] Cc: Gurudeva N. [EMAIL PROTECTED] Signed-off-by: Greg Kroah

[linux-usb-devel] [PATCH 090/149] USB: serial: kobil_sct: clean up urb-status usage

2007-07-12 Thread Greg Kroah-Hartman
This done in anticipation of removal of urb-status, which will make that patch easier to review and apply in the future. Cc: linux-usb-devel@lists.sourceforge.net Cc: Thomas Wahrenbruch [EMAIL PROTECTED] Signed-off-by: Greg Kroah-Hartman [EMAIL PROTECTED] --- drivers/usb/serial/kobil_sct.c

  1   2   3   4   5   6   >