aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Borntraeger <borntraeger@de.ibm.com>2015-10-12 07:27:29 -0400
committerChristian Borntraeger <borntraeger@de.ibm.com>2015-10-29 10:58:54 -0400
commit58c383c62e1a4379cee531b56e4293211f2d5ded (patch)
treefcb14fb2abcdd2165adb6f8fb8a1e48bdb1305dc
parentc5c2c393468576bad6d10b2b5fefff8cd25df3f4 (diff)
KVM: s390: drop useless newline in debugging data
the s390 debug feature does not need newlines. In fact it will result in empty lines. Get rid of 4 leftovers. Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
-rw-r--r--arch/s390/kvm/kvm-s390.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/s390/kvm/kvm-s390.c b/arch/s390/kvm/kvm-s390.c
index 35596177fad2..07a6aa896c12 100644
--- a/arch/s390/kvm/kvm-s390.c
+++ b/arch/s390/kvm/kvm-s390.c
@@ -514,7 +514,7 @@ static int kvm_s390_set_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
514 514
515 if (gtod_high != 0) 515 if (gtod_high != 0)
516 return -EINVAL; 516 return -EINVAL;
517 VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x\n", gtod_high); 517 VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x", gtod_high);
518 518
519 return 0; 519 return 0;
520} 520}
@@ -527,7 +527,7 @@ static int kvm_s390_set_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
527 return -EFAULT; 527 return -EFAULT;
528 528
529 kvm_s390_set_tod_clock(kvm, gtod); 529 kvm_s390_set_tod_clock(kvm, gtod);
530 VM_EVENT(kvm, 3, "SET: TOD base: 0x%llx\n", gtod); 530 VM_EVENT(kvm, 3, "SET: TOD base: 0x%llx", gtod);
531 return 0; 531 return 0;
532} 532}
533 533
@@ -559,7 +559,7 @@ static int kvm_s390_get_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
559 if (copy_to_user((void __user *)attr->addr, &gtod_high, 559 if (copy_to_user((void __user *)attr->addr, &gtod_high,
560 sizeof(gtod_high))) 560 sizeof(gtod_high)))
561 return -EFAULT; 561 return -EFAULT;
562 VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x\n", gtod_high); 562 VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x", gtod_high);
563 563
564 return 0; 564 return 0;
565} 565}
@@ -571,7 +571,7 @@ static int kvm_s390_get_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
571 gtod = kvm_s390_get_tod_clock_fast(kvm); 571 gtod = kvm_s390_get_tod_clock_fast(kvm);
572 if (copy_to_user((void __user *)attr->addr, &gtod, sizeof(gtod))) 572 if (copy_to_user((void __user *)attr->addr, &gtod, sizeof(gtod)))
573 return -EFAULT; 573 return -EFAULT;
574 VM_EVENT(kvm, 3, "QUERY: TOD base: 0x%llx\n", gtod); 574 VM_EVENT(kvm, 3, "QUERY: TOD base: 0x%llx", gtod);
575 575
576 return 0; 576 return 0;
577} 577}