Re: [U-Boot] [PATCH v2 1/2] usb: ehci: exynos: Fix multiple FDT decode

2013-03-05 Thread Vivek Gautam
Hi, On Wed, Mar 6, 2013 at 7:27 AM, Simon Glass wrote: > On Tue, Mar 5, 2013 at 5:40 AM, Vivek Gautam > wrote: >> Hi, >> >> >> On Thu, Feb 14, 2013 at 10:22 AM, Simon Glass wrote: >>> Hi, >>> >>> On Tue, Feb 12, 2013 at 10:26 PM, Vivek Gautam >>> wrote: With current FDT support driver

Re: [U-Boot] [PATCH v2 1/2] usb: ehci: exynos: Fix multiple FDT decode

2013-03-05 Thread Simon Glass
On Tue, Mar 5, 2013 at 5:40 AM, Vivek Gautam wrote: > Hi, > > > On Thu, Feb 14, 2013 at 10:22 AM, Simon Glass wrote: >> Hi, >> >> On Tue, Feb 12, 2013 at 10:26 PM, Vivek Gautam >> wrote: >>> With current FDT support driver tries to parse device node >>> twice in ehci_hcd_init() and ehci_hcd_sto

Re: [U-Boot] [PATCH v2 1/2] usb: ehci: exynos: Fix multiple FDT decode

2013-03-05 Thread Vivek Gautam
Hi, On Thu, Feb 14, 2013 at 10:22 AM, Simon Glass wrote: > Hi, > > On Tue, Feb 12, 2013 at 10:26 PM, Vivek Gautam > wrote: >> With current FDT support driver tries to parse device node >> twice in ehci_hcd_init() and ehci_hcd_stop(), which shouldn't >> happen ideally. >> Making provision to st

Re: [U-Boot] [PATCH v2 1/2] usb: ehci: exynos: Fix multiple FDT decode

2013-02-13 Thread Simon Glass
Hi, On Tue, Feb 12, 2013 at 10:26 PM, Vivek Gautam wrote: > With current FDT support driver tries to parse device node > twice in ehci_hcd_init() and ehci_hcd_stop(), which shouldn't > happen ideally. > Making provision to store data in a global structure and thereby > passing its pointer when ne

[U-Boot] [PATCH v2 1/2] usb: ehci: exynos: Fix multiple FDT decode

2013-02-12 Thread Vivek Gautam
With current FDT support driver tries to parse device node twice in ehci_hcd_init() and ehci_hcd_stop(), which shouldn't happen ideally. Making provision to store data in a global structure and thereby passing its pointer when needed. Signed-off-by: Vivek Gautam --- This patch comes up as a fix