mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-16 01:54:00 +00:00
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>
This commit is contained in:
parent
c5c2c39346
commit
58c383c62e
@ -514,7 +514,7 @@ static int kvm_s390_set_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
|
|||||||
|
|
||||||
if (gtod_high != 0)
|
if (gtod_high != 0)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x\n", gtod_high);
|
VM_EVENT(kvm, 3, "SET: TOD extension: 0x%x", gtod_high);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -527,7 +527,7 @@ static int kvm_s390_set_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
|
|||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
||||||
kvm_s390_set_tod_clock(kvm, gtod);
|
kvm_s390_set_tod_clock(kvm, gtod);
|
||||||
VM_EVENT(kvm, 3, "SET: TOD base: 0x%llx\n", gtod);
|
VM_EVENT(kvm, 3, "SET: TOD base: 0x%llx", gtod);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -559,7 +559,7 @@ static int kvm_s390_get_tod_high(struct kvm *kvm, struct kvm_device_attr *attr)
|
|||||||
if (copy_to_user((void __user *)attr->addr, >od_high,
|
if (copy_to_user((void __user *)attr->addr, >od_high,
|
||||||
sizeof(gtod_high)))
|
sizeof(gtod_high)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x\n", gtod_high);
|
VM_EVENT(kvm, 3, "QUERY: TOD extension: 0x%x", gtod_high);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -571,7 +571,7 @@ static int kvm_s390_get_tod_low(struct kvm *kvm, struct kvm_device_attr *attr)
|
|||||||
gtod = kvm_s390_get_tod_clock_fast(kvm);
|
gtod = kvm_s390_get_tod_clock_fast(kvm);
|
||||||
if (copy_to_user((void __user *)attr->addr, >od, sizeof(gtod)))
|
if (copy_to_user((void __user *)attr->addr, >od, sizeof(gtod)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
VM_EVENT(kvm, 3, "QUERY: TOD base: 0x%llx\n", gtod);
|
VM_EVENT(kvm, 3, "QUERY: TOD base: 0x%llx", gtod);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user