* [GIT PATCH] More USB bugfixes for 2.6.12-rc5
@ 2005-06-03 8:58 Greg KH
2005-06-03 15:01 ` [linux-usb-devel] " David Brownell
0 siblings, 1 reply; 2+ messages in thread
From: Greg KH @ 2005-06-03 8:58 UTC (permalink / raw)
To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel, linux-usb-devel
Here are some more USB patches for the 2.6.12-rc5 tree. The ub patch is pretty
big, but I forgot to send that one to you way back at the beginning of 2.6.12-rc
It has had much testing in the -mm tree. The other patches are just fixes or
device ids, or a new driver. And the cp2101 driver has an update to actually
make it useful. All of these patches have been in the past few -mm
releases.
Please pull from:
rsync://rsync.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git/
Full patches will be sent to the linux-usb-devel mailing list, if anyone
wants to see them.
thanks,
greg k-h
drivers/block/ub.c | 598 ++++++++++++++++++------------
drivers/usb/core/sysfs.c | 22 -
drivers/usb/input/hid-core.c | 18
drivers/usb/media/pwc/ChangeLog | 143 -------
drivers/usb/serial/Kconfig | 11
drivers/usb/serial/Makefile | 1
drivers/usb/serial/cp2101.c | 363 +++++++++++++-----
drivers/usb/serial/option.c | 729 +++++++++++++++++++++++++++++++++++++
drivers/usb/storage/unusual_devs.h | 9
include/linux/usb.h | 6
10 files changed, 1421 insertions(+), 479 deletions(-)
---------------
Adrian Bunk:
o USB: remove drivers/usb/media/pwc/ChangeLog
Craig Shelley:
o USB: CP2101 Add support for flow control
Greg Kroah-Hartman:
o USB: add Vernier devices to HID blacklist
Lonnie Mendez:
o USB: hid-core: add Earthmate lt-20 productid to blacklist table
Matthias Urlichs:
o USB: add Option Card driver
Paulo Marques:
o USB: make MODALIAS code a bit smaller devices
Pete Zaitcev:
o USB: Support multiply-LUN devices in ub
Phil Dibowitz:
o USB Storage: Add unusual_devs for Trumpion Voice Recorder
Ping Cheng:
o USB: add new wacom device to usb hid-core list
Roman Kagan:
o USB: update urb documentation
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [linux-usb-devel] [GIT PATCH] More USB bugfixes for 2.6.12-rc5
2005-06-03 8:58 [GIT PATCH] More USB bugfixes for 2.6.12-rc5 Greg KH
@ 2005-06-03 15:01 ` David Brownell
0 siblings, 0 replies; 2+ messages in thread
From: David Brownell @ 2005-06-03 15:01 UTC (permalink / raw)
To: linux-usb-devel
Cc: Greg KH, Linus Torvalds, Andrew Morton, linux-kernel, gsker
[-- Attachment #1: Type: text/plain, Size: 313 bytes --]
On Friday 03 June 2005 1:58 am, Greg KH wrote:
> Here are some more USB patches for the 2.6.12-rc5 tree.
And attached, one more (non-GIT) patch to resolve a Zaurus problem.
OSDL bugids #4512 and #4545 seem to be duplicates of this report.
Please merge for 2.6.12-final... it's an obvious one-line fix.
- Dave
[-- Attachment #2: usbnet_zaurus.patch --]
[-- Type: text/x-diff, Size: 753 bytes --]
This "obvious" one-liner is needed to recognize Zaurus SL 6000;
it just checks two GUIDs not just one.
From: Gerald Skerbitz <gsker@tcfreenet.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
--- linux-2.6.12-rc5/drivers/usb/net/usbnet.c.orig 2005-06-01 18:06:20.000000000 -0500
+++ linux-2.6.12-rc5/drivers/usb/net/usbnet.c 2005-06-01 18:29:30.000000000 -0500
@@ -2765,7 +2765,7 @@ static int blan_mdlm_bind (struct usbnet
}
/* expect bcdVersion 1.0, ignore */
if (memcmp(&desc->bGUID, blan_guid, 16)
- && memcmp(&desc->bGUID, blan_guid, 16) ) {
+ && memcmp(&desc->bGUID, safe_guid, 16) ) {
/* hey, this one might _really_ be MDLM! */
dev_dbg (&intf->dev, "MDLM guid\n");
goto bad_desc;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2005-06-03 15:02 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-03 8:58 [GIT PATCH] More USB bugfixes for 2.6.12-rc5 Greg KH
2005-06-03 15:01 ` [linux-usb-devel] " David Brownell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox