X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=include%2Fxen%2Fhvm.h;h=63917a8de3b077db8e944fae48cea0497046e001;hb=9457642a405fd68d5ce90f5c432e462277fb666e;hp=13e43e41637dad471aa9c7033474c57596260371;hpb=007f6c3a63e0831ff5a34bde072db08e917134c8;p=mirror_ubuntu-bionic-kernel.git diff --git a/include/xen/hvm.h b/include/xen/hvm.h index 13e43e41637d..63917a8de3b0 100644 --- a/include/xen/hvm.h +++ b/include/xen/hvm.h @@ -44,8 +44,8 @@ static inline int hvm_get_parameter(int idx, uint64_t *value) xhv.index = idx; r = HYPERVISOR_hvm_op(HVMOP_get_param, &xhv); if (r < 0) { - printk(KERN_ERR "Cannot get hvm parameter %s (%d): %d!\n", - param_name(idx), idx, r); + pr_err("Cannot get hvm parameter %s (%d): %d!\n", + param_name(idx), idx, r); return r; } *value = xhv.value;