public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Michael Trimarchi <trimarchi@gandalf.sssup.it>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 4/6] usb: bugfix driver/usb/host/ehci-hcd.c	function ehci_submit_root
Date: Wed, 08 Jul 2009 08:44:50 +0200	[thread overview]
Message-ID: <4A544062.2020100@gandalf.sssup.it> (raw)
In-Reply-To: <73173D32E9439E4ABB5151606C3E19E202DD54DD7E@SC-VEXCH1.marvell.com>

Prafulla Wadaskar wrote:
>  
>
>   
>> -----Original Message-----
>> From: u-boot-bounces at lists.denx.de 
>> [mailto:u-boot-bounces at lists.denx.de] On Behalf Of Remy Bohmer
>> Sent: Wednesday, July 08, 2009 12:16 AM
>> To: Michael Trimarchi; Ashish Karkare; Prabhanjan Sarnaik; 
>> Ronen Shitrit
>> Cc: u-boot at lists.denx.de
>> Subject: Re: [U-Boot] [PATCH 4/6] usb: bugfix 
>> driver/usb/host/ehci-hcd.c function ehci_submit_root
>>
>> Hello All,
>>
>> 2009/7/4 Michael Trimarchi <trimarchi@gandalf.sssup.it>:
>>     
>>> Jean-Christophe PLAGNIOL-VILLARD wrote:
>>>       
>>>> On 20:56 Mon 29 Jun     , Prafulla Wadaskar wrote:
>>>>
>>>>         
>>>>> Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
>>>>> ---
>>>>>  drivers/usb/host/ehci-hcd.c |    2 +-
>>>>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>>>>           
>>>> Remy could you look the marvell usb patch?
>>>>
>>>>         
>>> I think that this one is correct but not yet tested
>>>       
>> Sorry for not being very responsive these days... it is 
>> vacation time... ;-)
>>
>> This patch of Michael looks good, and I prefer that patch 
>> above the marvell usb patch.
>>     
> Patch by me ;-D
>   
>> If anybody of you are able of testing it, I can apply it. (I 
>> do not have the proper hardware myself)
>>     
>
> Hi Kumar
> I have seen a patch by you to this file
> Ref: http://lists.denx.de/pipermail/u-boot/2009-July/055652.html
> I hope you have h/w and tested ehci-hcd driver :-)
> Can you pls comment on this?
> FYI: I have tested it for Sheevaplug Kirkwood hardware
> If you get a chance, pls go through my patch, I feel it is logical and even in the kernel too. (ref: line 379: linux/drivers/usb/core/hcd.c)
>
> I wonder why it has not been detected on any other platforms yet!
> Any one ...Any comments ??
>   
Because there was an error in the switch :( maybe, that I fix in my patch,
but I can't test now because I don't have any hardware.

-	typeReq = req->request << 8 | req->requesttype;
+	typeReq = req->request | req->requesttype << 8;
 
-	switch (le16_to_cpu(typeReq)) {
+	switch (typeReq) {

Michael
> Regards..
> Prafulla . .
>  
>   
>> Kind Regards,
>>
>> Remy
>> _______________________________________________
>> U-Boot mailing list
>> U-Boot at lists.denx.de
>> http://lists.denx.de/mailman/listinfo/u-boot
>>
>>     

  reply	other threads:[~2009-07-08  6:44 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-29 15:24 [U-Boot] [PATCH 1/6] net: merge bugfix: Marvell Kirkwood gigabit ethernet driver Prafulla Wadaskar
2009-06-29 15:25 ` [U-Boot] [PATCH v3 2/6] nand: Add Marvell Kirkwood NAND driver Prafulla Wadaskar
2009-06-29 15:25   ` [U-Boot] [PATCH 3/6] arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support Prafulla Wadaskar
2009-06-29 15:26     ` [U-Boot] [PATCH 4/6] usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root Prafulla Wadaskar
2009-06-29 12:17       ` Michael Trimarchi
2009-06-29 17:29         ` Prafulla Wadaskar
2009-06-29 18:23           ` Michael Trimarchi
2009-07-03 23:46       ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-04 13:05         ` Michael Trimarchi
2009-07-07 18:45           ` Remy Bohmer
2009-07-08  6:19             ` Prafulla Wadaskar
2009-07-08  6:44               ` Michael Trimarchi [this message]
2009-07-08 14:12                 ` Kumar Gala
2009-07-09  6:10                   ` Prafulla Wadaskar
2009-07-07  7:28         ` Prafulla Wadaskar
2009-07-04 16:10     ` [U-Boot] [PATCH 3/6] arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support Jean-Christophe PLAGNIOL-VILLARD
2009-07-07 20:27   ` [U-Boot] [PATCH v3 2/6] nand: Add Marvell Kirkwood NAND driver Jean-Christophe PLAGNIOL-VILLARD
2009-07-07 20:33     ` Scott Wood
2009-07-07 21:28   ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-08  5:30     ` Prafulla Wadaskar
2009-06-29 21:05 ` [U-Boot] [PATCH 1/6] net: merge bugfix: Marvell Kirkwood gigabit ethernet driver Jean-Christophe PLAGNIOL-VILLARD
2009-06-29 22:54   ` Ben Warren
2009-07-01 20:37 ` Jean-Christophe PLAGNIOL-VILLARD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A544062.2020100@gandalf.sssup.it \
    --to=trimarchi@gandalf.sssup.it \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox