Re: [U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-07-03 Thread Jaehoon Chung
On 07/02/2016 03:17 AM, Simon Glass wrote: > Hi, > > On 1 July 2016 at 04:37, Jaehoon Chung wrote: >> On 07/01/2016 04:28 AM, Simon Glass wrote: >>> Hi Meteusz, >>> >>> On 30 June 2016 at 12:18, Mateusz Kulikowski >>> wrote: On 29.06.2016 05:27, Simon Glass wrote: > Hi Matt, > >

Re: [U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-07-01 Thread Simon Glass
Hi, On 1 July 2016 at 04:37, Jaehoon Chung wrote: > On 07/01/2016 04:28 AM, Simon Glass wrote: >> Hi Meteusz, >> >> On 30 June 2016 at 12:18, Mateusz Kulikowski >> wrote: >>> On 29.06.2016 05:27, Simon Glass wrote: Hi Matt, On 25 June 2016 at 14:57, Matt Corallo wrote: > Sign

Re: [U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-07-01 Thread Jaehoon Chung
On 07/01/2016 04:28 AM, Simon Glass wrote: > Hi Meteusz, > > On 30 June 2016 at 12:18, Mateusz Kulikowski > wrote: >> On 29.06.2016 05:27, Simon Glass wrote: >>> Hi Matt, >>> >>> On 25 June 2016 at 14:57, Matt Corallo wrote: Signed-off-by: Matt Corallo --- drivers/mmc/mmc.c | 3

Re: [U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-06-30 Thread Matt Corallo
Sorry, this was related to https://patchwork.ozlabs.org/patch/624614/, not dragonboard, and yes, is the same issue that was addressed by the patch you linked. With this patch the MMC worked fine, but, indeed, as with dragonboard, its better to assign mmc instead of removing this (this seems to be

Re: [U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-06-30 Thread Simon Glass
Hi Meteusz, On 30 June 2016 at 12:18, Mateusz Kulikowski wrote: > On 29.06.2016 05:27, Simon Glass wrote: >> Hi Matt, >> >> On 25 June 2016 at 14:57, Matt Corallo wrote: >>> Signed-off-by: Matt Corallo >>> --- >>> drivers/mmc/mmc.c | 3 ++- >>> 1 file changed, 2 insertions(+), 1 deletion(-) >>

Re: [U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-06-30 Thread Mateusz Kulikowski
On 29.06.2016 05:27, Simon Glass wrote: > Hi Matt, > > On 25 June 2016 at 14:57, Matt Corallo wrote: >> Signed-off-by: Matt Corallo >> --- >> drivers/mmc/mmc.c | 3 ++- >> 1 file changed, 2 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c >> index aabfc71..e

Re: [U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-06-28 Thread Simon Glass
Hi Matt, On 25 June 2016 at 14:57, Matt Corallo wrote: > Signed-off-by: Matt Corallo > --- > drivers/mmc/mmc.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c > index aabfc71..eba20f0 100644 > --- a/drivers/mmc/mmc.c > +++ b/drive

[U-Boot] [PATCH] MMC: Do not write to mmc_uclass_priv if it was not allocated

2016-06-26 Thread Matt Corallo
Signed-off-by: Matt Corallo --- drivers/mmc/mmc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index aabfc71..eba20f0 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -1734,7 +1734,8 @@ int mmc_init(struct mmc *mmc) #ifdef C