Skip to content

Commit

Permalink
debugfs
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre-Louis Bossart <[email protected]>
  • Loading branch information
plbossart committed Dec 7, 2023
1 parent 0613b73 commit 9234b71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/soundwire/debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,8 @@ static int cmd_go(void *data, u64 value)
pm_runtime_mark_last_busy(&slave->dev);
pm_runtime_put(&slave->dev);

dev_dbg(&slave->dev, "command completed, status %d, time %lld ms\n", ret,
(finish_t - start_t) / NSEC_PER_MSEC);
dev_dbg(&slave->dev, "command completed, status %d, time %lld ms\n",
ret, div_u64(finish_t - start_t, NSEC_PER_MSEC));

return ret;
}
Expand Down

0 comments on commit 9234b71

Please sign in to comment.