Re: [U-Boot] [PATCH u-boot v3 1/3] regmap: add regmap_read_poll_timeout() helper

2018-11-27 Thread Neil Armstrong
Hi Simon, On 27/11/2018 02:02, Simon Glass wrote: > Hi Neil, > > On Thu, 22 Nov 2018 at 03:01, Neil Armstrong wrote: >> >> Add the regmap_read_poll_timeout() macro based on the Linux implementation >> to simplify register polling with configurable timeout and sleep. >> >> Acked-by: Jagan Teki

Re: [U-Boot] [PATCH u-boot v3 1/3] regmap: add regmap_read_poll_timeout() helper

2018-11-26 Thread Simon Glass
Hi Neil, On Thu, 22 Nov 2018 at 03:01, Neil Armstrong wrote: > > Add the regmap_read_poll_timeout() macro based on the Linux implementation > to simplify register polling with configurable timeout and sleep. > > Acked-by: Jagan Teki > Signed-off-by: Neil Armstrong > --- > include/regmap.h |

[U-Boot] [PATCH u-boot v3 1/3] regmap: add regmap_read_poll_timeout() helper

2018-11-22 Thread Neil Armstrong
Add the regmap_read_poll_timeout() macro based on the Linux implementation to simplify register polling with configurable timeout and sleep. Acked-by: Jagan Teki Signed-off-by: Neil Armstrong --- include/regmap.h | 38 ++ 1 file changed, 38 insertions(+)

Re: [U-Boot] [PATCH u-boot v3 1/3] regmap: add regmap_read_poll_timeout() helper

2018-11-14 Thread Jagan Teki
On Wed, Nov 14, 2018 at 3:57 PM Neil Armstrong wrote: > > Add the regmap_read_poll_timeout() macro based on the Linux implementation > to simplify register polling with configurable timeout and sleep. > > Signed-off-by: Neil Armstrong > --- Acked-by: Jagan Teki

[U-Boot] [PATCH u-boot v3 1/3] regmap: add regmap_read_poll_timeout() helper

2018-11-14 Thread Neil Armstrong
Add the regmap_read_poll_timeout() macro based on the Linux implementation to simplify register polling with configurable timeout and sleep. Signed-off-by: Neil Armstrong --- include/regmap.h | 38 ++ 1 file changed, 38 insertions(+) diff --git