Message ID | cover.1705410327.git.jani.nikula@intel.com (mailing list archive) |
---|---|
Headers | show |
Series | drm: drm debug and error logging improvements | expand |
On Tue, 16 Jan 2024, Jani Nikula <jani.nikula@intel.com> wrote: > This is resend and more patches on top of [1]. I don't think I've > changed anything since then. Hi drm-misc maintainers - I've got R-b from Luca, but given there's no comments outside of Intel, are you okay with me merging this to drm-misc? BR, Jani. > > BR, > Jani. > > [1] https://patchwork.freedesktop.org/series/126873/ > > > Jani Nikula (10): > drm/print: make drm_err_printer() device specific by using drm_err() > drm/print: move enum drm_debug_category etc. earlier in drm_print.h > drm/print: add drm_dbg_printer() for drm device specific printer > drm/dp_mst: switch from drm_debug_printer() to device specific > drm_dbg_printer() > drm/mode: switch from drm_debug_printer() to device specific > drm_dbg_printer() > drm/dp: switch drm_dp_vsc_sdp_log() to struct drm_printer > drm/i915: switch from drm_debug_printer() to device specific > drm_dbg_printer() > drm/i915: use drm_printf() with the drm_err_printer intead of pr_err() > drm/xe: switch from drm_debug_printer() to device specific > drm_dbg_printer() > drm: remove drm_debug_printer in favor of drm_dbg_printer > > drivers/gpu/drm/display/drm_dp_helper.c | 17 +- > drivers/gpu/drm/display/drm_dp_mst_topology.c | 23 +- > drivers/gpu/drm/drm_mode_config.c | 2 +- > drivers/gpu/drm/drm_modeset_lock.c | 2 +- > drivers/gpu/drm/drm_print.c | 29 ++- > .../drm/i915/display/intel_crtc_state_dump.c | 5 +- > drivers/gpu/drm/i915/display/intel_display.c | 27 ++- > .../drm/i915/display/intel_display_driver.c | 3 +- > .../gpu/drm/i915/gt/intel_engine_heartbeat.c | 3 +- > drivers/gpu/drm/i915/gt/intel_reset.c | 3 +- > drivers/gpu/drm/i915/gt/intel_workarounds.c | 3 +- > drivers/gpu/drm/i915/gt/selftest_context.c | 3 +- > .../drm/i915/gt/selftest_engine_heartbeat.c | 10 +- > drivers/gpu/drm/i915/i915_driver.c | 3 +- > drivers/gpu/drm/i915/selftests/i915_active.c | 8 +- > drivers/gpu/drm/ttm/ttm_bo.c | 2 +- > drivers/gpu/drm/xe/xe_gt.c | 2 +- > drivers/gpu/drm/xe/xe_gt_topology.c | 4 +- > drivers/gpu/drm/xe/xe_reg_sr.c | 2 +- > include/drm/display/drm_dp_helper.h | 3 +- > include/drm/drm_print.h | 220 +++++++++--------- > 21 files changed, 206 insertions(+), 168 deletions(-)
On Thu, Feb 01, 2024 at 02:51:13PM +0200, Jani Nikula wrote: > On Tue, 16 Jan 2024, Jani Nikula <jani.nikula@intel.com> wrote: > > This is resend and more patches on top of [1]. I don't think I've > > changed anything since then. > > Hi drm-misc maintainers - > > I've got R-b from Luca, but given there's no comments outside of Intel, > are you okay with me merging this to drm-misc? Acked-by: Maxime Ripard <mripard@kernel.org> Maxime
On Thu, 01 Feb 2024, Maxime Ripard <mripard@kernel.org> wrote: > On Thu, Feb 01, 2024 at 02:51:13PM +0200, Jani Nikula wrote: >> On Tue, 16 Jan 2024, Jani Nikula <jani.nikula@intel.com> wrote: >> > This is resend and more patches on top of [1]. I don't think I've >> > changed anything since then. >> >> Hi drm-misc maintainers - >> >> I've got R-b from Luca, but given there's no comments outside of Intel, >> are you okay with me merging this to drm-misc? > > Acked-by: Maxime Ripard <mripard@kernel.org> Thanks for the reviews and acks, pushed to drm-misc-next. BR, Jani.