Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-09-10 Thread Kevin Hilman
On Tue, Sep 1, 2015 at 8:03 AM, Tony Lindgren wrote: > * Grygorii Strashko [150901 07:57]: >> On 09/01/2015 05:50 PM, Tony Lindgren wrote: >> >> >> >>On -next, Above crash signature could be related to race >> >>"ARM: OMAP2+: omap-device: fix race

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-09-10 Thread Tony Lindgren
* Kevin Hilman [150910 10:03]: > On Tue, Sep 1, 2015 at 8:03 AM, Tony Lindgren wrote: > > * Grygorii Strashko [150901 07:57]: > >> On 09/01/2015 05:50 PM, Tony Lindgren wrote: > >> >> > >> >>On -next, Above crash signature could be

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-09-01 Thread Tony Lindgren
* Grygorii Strashko [150901 07:57]: > On 09/01/2015 05:50 PM, Tony Lindgren wrote: > >> > >>On -next, Above crash signature could be related to race > >>"ARM: OMAP2+: omap-device: fix race deferred probe of omap_hsmmc vs > >>omap_device_late_init" >

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-09-01 Thread Grygorii Strashko
On 09/01/2015 12:14 AM, Tony Lindgren wrote: > * Tony Lindgren [150831 14:02]: >> >> And I must have tested next-20150827 instead of next-20150828. Or >> else it does not happen on every boot. In any case, I'm now getting >> the following on next-20150831 most of the time: >> >>

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-09-01 Thread Tony Lindgren
* Grygorii Strashko [150901 07:36]: > On 09/01/2015 12:14 AM, Tony Lindgren wrote: > > * Tony Lindgren [150831 14:02]: > >> > >> And I must have tested next-20150827 instead of next-20150828. Or > >> else it does not happen on every boot. In any case,

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-09-01 Thread Grygorii Strashko
On 09/01/2015 05:50 PM, Tony Lindgren wrote: * Grygorii Strashko [150901 07:36]: On 09/01/2015 12:14 AM, Tony Lindgren wrote: * Tony Lindgren [150831 14:02]: And I must have tested next-20150827 instead of next-20150828. Or else it does not

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-08-31 Thread Tony Lindgren
* Kishon Vijay Abraham I [150830 22:47]: > Hi, > > On Saturday 29 August 2015 12:33 AM, Tony Lindgren wrote: > > * Olof Johansson [150828 11:11]: > >> Hi, > >> > >> On Thu, Aug 27, 2015 at 2:13 AM, Kishon Vijay Abraham I > >> wrote: > >>> Now

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-08-31 Thread Tony Lindgren
* Tony Lindgren [150831 14:02]: > > And I must have tested next-20150827 instead of next-20150828. Or > else it does not happen on every boot. In any case, I'm now getting > the following on next-20150831 most of the time: > > [9.493133] omap_hsmmc 4809c000.mmc: using

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-08-30 Thread Kishon Vijay Abraham I
Hi, On Saturday 29 August 2015 12:33 AM, Tony Lindgren wrote: * Olof Johansson o...@lixom.net [150828 11:11]: Hi, On Thu, Aug 27, 2015 at 2:13 AM, Kishon Vijay Abraham I kis...@ti.com wrote: Now return error only if the return value of devm_regulator_get_optional() is not the same as

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-08-28 Thread Olof Johansson
Hi, On Thu, Aug 27, 2015 at 2:13 AM, Kishon Vijay Abraham I kis...@ti.com wrote: Now return error only if the return value of devm_regulator_get_optional() is not the same as -ENODEV, since with -EPROBE_DEFER, the regulator can be obtained later and all other errors are fatal.

Re: [PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-08-28 Thread Tony Lindgren
* Olof Johansson o...@lixom.net [150828 11:11]: Hi, On Thu, Aug 27, 2015 at 2:13 AM, Kishon Vijay Abraham I kis...@ti.com wrote: Now return error only if the return value of devm_regulator_get_optional() is not the same as -ENODEV, since with -EPROBE_DEFER, the regulator can be obtained

[PATCH v3 02/15] mmc: host: omap_hsmmc: return on fatal errors from omap_hsmmc_reg_get

2015-08-27 Thread Kishon Vijay Abraham I
Now return error only if the return value of devm_regulator_get_optional() is not the same as -ENODEV, since with -EPROBE_DEFER, the regulator can be obtained later and all other errors are fatal. Signed-off-by: Kishon Vijay Abraham I kis...@ti.com Tested-by: Tony Lindgren t...@atomide.com ---