mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-18 10:46:12 +07:00
drm/i915/gvt: Make gvt_vgpu_err use pr_err
gvt_vgpu_err means something goes wrong. We need the error propagates to kernel message by default. Signed-off-by: Changbin Du <changbin.du@intel.com> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
This commit is contained in:
parent
e4aeba6979
commit
c982c45db6
@ -30,9 +30,9 @@
|
||||
#define gvt_vgpu_err(fmt, args...) \
|
||||
do { \
|
||||
if (IS_ERR_OR_NULL(vgpu)) \
|
||||
pr_debug("gvt: "fmt, ##args); \
|
||||
pr_err("gvt: "fmt, ##args); \
|
||||
else \
|
||||
pr_debug("gvt: vgpu %d: "fmt, vgpu->id, ##args);\
|
||||
pr_err("gvt: vgpu %d: "fmt, vgpu->id, ##args);\
|
||||
} while (0)
|
||||
|
||||
#define gvt_dbg_core(fmt, args...) \
|
||||
|
Loading…
Reference in New Issue
Block a user