DM: use pr_dbg in vrtc instead of printf

also add "\n" in the end of each log.

Tracked-On: #3012
Signed-off-by: Minggui Cao <minggui.cao@intel.com>
Reviewed-by: Yin Fengwei <fengwei.yin@intel.com>
This commit is contained in:
Minggui Cao
2019-05-30 16:55:44 +08:00
committed by ACRN System Integration
parent 5ab098eae2
commit d05349d767
2 changed files with 22 additions and 20 deletions

View File

@@ -411,7 +411,7 @@ static int suspend_mode = VM_SUSPEND_NONE;
void
vm_set_suspend_mode(enum vm_suspend_how how)
{
pr_notice("vm mode changed from %d to:%d", suspend_mode, how);
pr_notice("vm mode changed from %d to %d\n", suspend_mode, how);
suspend_mode = how;
}