diff options
author | Francois Dugast <francois.dugast@intel.com> | 2023-07-19 13:51:07 +0000 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2023-12-21 11:37:52 -0500 |
commit | ea82d5aab53f8f13fa0834d0b4341ca0788c2a8f (patch) | |
tree | d2604b954e72c386f1f3b429003f5e21d78e352c /drivers/gpu/drm/xe/xe_execlist.c | |
parent | 955c09e2cc4894b5997f548de1bd3bdfa18e60e4 (diff) |
drm/xe/execlist: Remove leftover printk messages
Those look like leftover debug and are not even being used. If they were
real debug/info, they should be using the drm helpers.
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers/gpu/drm/xe/xe_execlist.c')
-rw-r--r-- | drivers/gpu/drm/xe/xe_execlist.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/gpu/drm/xe/xe_execlist.c b/drivers/gpu/drm/xe/xe_execlist.c index b0ccc4ff8461..b45594a45fe2 100644 --- a/drivers/gpu/drm/xe/xe_execlist.c +++ b/drivers/gpu/drm/xe/xe_execlist.c @@ -47,8 +47,6 @@ static void __start_lrc(struct xe_hw_engine *hwe, struct xe_lrc *lrc, struct xe_device *xe = gt_to_xe(gt); u64 lrc_desc; - printk(KERN_INFO "__start_lrc(%s, 0x%p, %u)\n", hwe->name, lrc, ctx_id); - lrc_desc = xe_lrc_descriptor(lrc); if (GRAPHICS_VERx100(xe) >= 1250) { @@ -125,9 +123,6 @@ static void __xe_execlist_port_idle(struct xe_execlist_port *port) if (!port->running_exl) return; - printk(KERN_INFO "__xe_execlist_port_idle(%d:%d)\n", port->hwe->class, - port->hwe->instance); - xe_lrc_write_ring(&port->hwe->kernel_lrc, noop, sizeof(noop)); __start_lrc(port->hwe, &port->hwe->kernel_lrc, 0); port->running_exl = NULL; @@ -176,9 +171,6 @@ static u64 read_execlist_status(struct xe_hw_engine *hwe) lo = xe_mmio_read32(gt, RING_EXECLIST_STATUS_LO(hwe->mmio_base)); hi = xe_mmio_read32(gt, RING_EXECLIST_STATUS_HI(hwe->mmio_base)); - printk(KERN_INFO "EXECLIST_STATUS %d:%d = 0x%08x %08x\n", hwe->class, - hwe->instance, hi, lo); - return lo | (u64)hi << 32; } |