mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
Merge branch 'master' of https://source.denx.de/u-boot/custodians/u-boot-watchdog
- Correct watchdog timeout print message (Chanho Park)
This commit is contained in:
commit
e37e6f181e
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
#include <cyclic.h>
|
#include <cyclic.h>
|
||||||
|
#include <div64.h>
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <hang.h>
|
#include <hang.h>
|
||||||
|
@ -141,7 +142,7 @@ int wdt_start(struct udevice *dev, u64 timeout_ms, ulong flags)
|
||||||
|
|
||||||
printf("WDT: Started %s with%s servicing %s (%ds timeout)\n",
|
printf("WDT: Started %s with%s servicing %s (%ds timeout)\n",
|
||||||
dev->name, IS_ENABLED(CONFIG_WATCHDOG) ? "" : "out",
|
dev->name, IS_ENABLED(CONFIG_WATCHDOG) ? "" : "out",
|
||||||
str, priv->timeout);
|
str, (u32)lldiv(timeout_ms, 1000));
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue