diff options
| author | David Brownell <[email protected]> | 2005-06-03 08:01:35 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2005-06-03 08:16:17 -0700 |
| commit | f4d340cf869b2b63e1043eed72aa2eab6fa2cb2c (patch) | |
| tree | 34b9a08595d938f37ec3cdf6fd86df32109cf80d | |
| parent | 39a66b8d22a36cfa1a48f7f59c6a4639d9c99653 (diff) | |
[PATCH] USB: resolve Zaurus problem
This "obvious" one-liner is needed to recognize Zaurus SL 6000;
it just checks two GUIDs not just one.
OSDL bugids #4512 and #4545 seem to be duplicates of this report.
From: Gerald Skerbitz <[email protected]>
Signed-off-by: David Brownell <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | drivers/usb/net/usbnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/net/usbnet.c b/drivers/usb/net/usbnet.c index 85476e76b244..4cbb408af727 100644 --- a/drivers/usb/net/usbnet.c +++ b/drivers/usb/net/usbnet.c @@ -2765,7 +2765,7 @@ static int blan_mdlm_bind (struct usbnet *dev, struct usb_interface *intf) } /* 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; |