mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-04 13:31:39 +02: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
@ -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…
x
Reference in New Issue
Block a user