Re: [U-Boot] [PATCH 1/3] watchdog: bcm6345: callback start use tick instead of ms

2019-05-19 Thread Tom Rini
On Fri, May 03, 2019 at 07:43:06PM +0200, Philippe Reynes wrote: > The function bcm6345_wdt_start use the argument timeout > as tick but it should be used as milliseconds. > > A clock is added as requirement for this driver. > The frequency of the clock is then used to convert the > millisecond t

Re: [U-Boot] [PATCH 1/3] watchdog: bcm6345: callback start use tick instead of ms

2019-05-06 Thread Stefan Roese
On 03.05.19 19:43, Philippe Reynes wrote: The function bcm6345_wdt_start use the argument timeout as tick but it should be used as milliseconds. A clock is added as requirement for this driver. The frequency of the clock is then used to convert the millisecond to ticks in the function bcm6345_wd

[U-Boot] [PATCH 1/3] watchdog: bcm6345: callback start use tick instead of ms

2019-05-03 Thread Philippe Reynes
The function bcm6345_wdt_start use the argument timeout as tick but it should be used as milliseconds. A clock is added as requirement for this driver. The frequency of the clock is then used to convert the millisecond to ticks in the function bcm6345_wdt_start. Signed-off-by: Philippe Reynes --