Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Francois Dugast and committed by
Rodrigo Vivi
ea82d5aa 955c09e2

-8
-8
drivers/gpu/drm/xe/xe_execlist.c
··· 47 47 struct xe_device *xe = gt_to_xe(gt); 48 48 u64 lrc_desc; 49 49 50 - printk(KERN_INFO "__start_lrc(%s, 0x%p, %u)\n", hwe->name, lrc, ctx_id); 51 - 52 50 lrc_desc = xe_lrc_descriptor(lrc); 53 51 54 52 if (GRAPHICS_VERx100(xe) >= 1250) { ··· 123 125 if (!port->running_exl) 124 126 return; 125 127 126 - printk(KERN_INFO "__xe_execlist_port_idle(%d:%d)\n", port->hwe->class, 127 - port->hwe->instance); 128 - 129 128 xe_lrc_write_ring(&port->hwe->kernel_lrc, noop, sizeof(noop)); 130 129 __start_lrc(port->hwe, &port->hwe->kernel_lrc, 0); 131 130 port->running_exl = NULL; ··· 170 175 171 176 lo = xe_mmio_read32(gt, RING_EXECLIST_STATUS_LO(hwe->mmio_base)); 172 177 hi = xe_mmio_read32(gt, RING_EXECLIST_STATUS_HI(hwe->mmio_base)); 173 - 174 - printk(KERN_INFO "EXECLIST_STATUS %d:%d = 0x%08x %08x\n", hwe->class, 175 - hwe->instance, hi, lo); 176 178 177 179 return lo | (u64)hi << 32; 178 180 }