Re: [U-Boot] [PATCH v3 05/13] regmap: Introduce init_range

2018-08-03 Thread Mario Six
Hi Simon, On Thu, Aug 2, 2018 at 2:21 PM, Simon Glass wrote: > On 31 July 2018 at 04:01, Mario Six wrote: >> Both fdtdec_get_addr_size_fixed and of_address_to_resource can fail with >> an error, which is not currently checked during regmap initialization. >> >> Since the indentation depth is alr

Re: [U-Boot] [PATCH v3 05/13] regmap: Introduce init_range

2018-08-02 Thread Simon Glass
On 31 July 2018 at 04:01, Mario Six wrote: > Both fdtdec_get_addr_size_fixed and of_address_to_resource can fail with > an error, which is not currently checked during regmap initialization. > > Since the indentation depth is already quite deep, extract a new > 'init_range' method to do the initia

Re: [U-Boot] [PATCH v3 05/13] regmap: Introduce init_range

2018-08-01 Thread Anatolij Gustschin
On Tue, 31 Jul 2018 12:01:02 +0200 Mario Six mario@gdsys.cc wrote: > Both fdtdec_get_addr_size_fixed and of_address_to_resource can fail with > an error, which is not currently checked during regmap initialization. > > Since the indentation depth is already quite deep, extract a new > 'init_r

[U-Boot] [PATCH v3 05/13] regmap: Introduce init_range

2018-07-31 Thread Mario Six
Both fdtdec_get_addr_size_fixed and of_address_to_resource can fail with an error, which is not currently checked during regmap initialization. Since the indentation depth is already quite deep, extract a new 'init_range' method to do the initialization. Signed-off-by: Mario Six --- v2 -> v3: N