提交 2cbb3ce1 编写于 作者: R Rafael J. Wysocki

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: NRafael J. Wysocki <rjw@sisk.pl>
上级 d83f905e
...@@ -304,7 +304,7 @@ static int pm_noirq_op(struct device *dev, ...@@ -304,7 +304,7 @@ static int pm_noirq_op(struct device *dev,
pm_message_t state) pm_message_t state)
{ {
int error = 0; int error = 0;
ktime_t calltime, delta, rettime; ktime_t calltime = ktime_set(0, 0), delta, rettime;
if (initcall_debug) { if (initcall_debug) {
pr_info("calling %s+ @ %i, parent: %s\n", pr_info("calling %s+ @ %i, parent: %s\n",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册