mirror of https://gitee.com/openkylin/linux.git
PM: Avoid compiler warning in pm_noirq_op()
The compiler complains that calltime may be uninitialized in pm_noirq_op(), so add extra initialization for that variable to avoid the warning. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
This commit is contained in:
parent
d83f905e12
commit
2cbb3ce1ad
|
@ -304,7 +304,7 @@ static int pm_noirq_op(struct device *dev,
|
|||
pm_message_t state)
|
||||
{
|
||||
int error = 0;
|
||||
ktime_t calltime, delta, rettime;
|
||||
ktime_t calltime = ktime_set(0, 0), delta, rettime;
|
||||
|
||||
if (initcall_debug) {
|
||||
pr_info("calling %s+ @ %i, parent: %s\n",
|
||||
|
|
Loading…
Reference in New Issue