aboutsummaryrefslogtreecommitdiffstats
path: root/include/xen/hvm.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xen/hvm.h')
-rw-r--r--include/xen/hvm.h4
1 files changed, 2 insertions, 2 deletions
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)
44 xhv.index = idx; 44 xhv.index = idx;
45 r = HYPERVISOR_hvm_op(HVMOP_get_param, &xhv); 45 r = HYPERVISOR_hvm_op(HVMOP_get_param, &xhv);
46 if (r < 0) { 46 if (r < 0) {
47 printk(KERN_ERR "Cannot get hvm parameter %s (%d): %d!\n", 47 pr_err("Cannot get hvm parameter %s (%d): %d!\n",
48 param_name(idx), idx, r); 48 param_name(idx), idx, r);
49 return r; 49 return r;
50 } 50 }
51 *value = xhv.value; 51 *value = xhv.value;