[Intel-gfx] [PATCH 01/10] drm/i915/dsb: convert to drm_device based logging macros.

2020-02-26 Thread Wambui Karuga
+drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_dsb.c | 28 ++-- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_d

[Intel-gfx] [PATCH 02/10] drm/i915/fbc: convert to drm_device based logging macros.

2020-02-26 Thread Wambui Karuga
, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_fbc.c | 28 ++

[Intel-gfx] [PATCH 07/10] drm/i915/hotplug: convert to drm_device based logging.

2020-02-26 Thread Wambui Karuga
Converts various instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_hotplug.c. In some cases, this involves extracting the drm_i915_private pointer from the drm_device struct to be used in the logging macros. Signed-off-by: Wambui

[Intel-gfx] [PATCH 09/10] drm/i915/lvds: convert to drm_device based logging macros.

2020-02-26 Thread Wambui Karuga
drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_lvds.c | 43 +-- 1 file

[Intel-gfx] [PATCH 06/10] drm/i915/hdcp: convert to struct drm_device based logging.

2020-02-26 Thread Wambui Karuga
Converts various instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_hdcp.c. This also involves extracting the drm_i915_private device from the intel_connector type for use in the macros. Signed-off-by: Wambui Karuga --- drivers

[Intel-gfx] [PATCH 04/10] drm/i915/fifo_underrun: convert to drm_device based logging.

2020-02-26 Thread Wambui Karuga
, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- .../drm/i915/display/intel_fifo_underrun.c| 29 ++- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/drivers/gpu

[Intel-gfx] [PATCH 08/10] drm/i915/lpe_audio: convert to drm_device based logging macros.

2020-02-26 Thread Wambui Karuga
-by: Wambui Karuga --- .../gpu/drm/i915/display/intel_lpe_audio.c| 23 +++ 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_lpe_audio.c b/drivers/gpu/drm/i915/display/intel_lpe_audio.c index 516e7179a5a4..ad5cc13037ae 100644 --- a/drivers

[Intel-gfx] [PATCH 03/10] drm/i915/fbdev: convert to drm_device based logging.

2020-02-26 Thread Wambui Karuga
Convert various instances of printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_fbdev.c. This also involves extracting the drm_i915_private device from various intel types. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display

[Intel-gfx] [PATCH 05/10] drm/i915/gmbus: convert to drm_device based logging,

2020-02-26 Thread Wambui Karuga
, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_gmbus.c | 33 +- 1

[Intel-gfx] [PATCH 00/10] drm/i915/display: conversion to drm_device based logging macros

2020-02-26 Thread Wambui Karuga
This series continues the conversion of various instances of the printk based drm logging macros to use the struct drm_device logging macros. This series focuses on various files in drm/i915/display and was done both manually and using coccinelle. Wambui Karuga (10): drm/i915/dsb: convert

[Intel-gfx] [PATCH 10/10] drm/i915/overlay: convert to drm_device based logging.

2020-02-26 Thread Wambui Karuga
IVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Note that this converts DRM_DEBUG to drm_dbg(). Checkpatch warnings were addressed manually. References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga

[Intel-gfx] [PATCH 2/6] drm/i915/ddi: convert to struct drm_device log macros.

2020-01-21 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_ddi.c | 98 +++- 1 file changed, 60 insertions(+), 38 d

[Intel-gfx] [PATCH v2 2/5] drm/i915/bios: convert to struct drm_device logging macros.

2020-01-21 Thread Wambui Karuga
) ...+> } Formatting warnings by checkpatch are addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_bios.c | 357 +- 1 file changed, 211 insertions(+), 146 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_bios.c b/drivers/gpu/

[Intel-gfx] [PATCH v2 0/5] drm/i915: conversion to new drm logging macros.

2020-01-21 Thread Wambui Karuga
This series continues the conversion to the new struct drm_device based logging macros in various files in drm/i915. These patches were achieved both using coccinelle and manually. v2: rebase patches onto drm-tip to fix merge conflict in v1 series. Wambui Karuga (5): drm/i915/atomic: use

[Intel-gfx] [PATCH 5/6] drm/i915/opregion: conversion to struct drm_device logging macros.

2020-01-21 Thread Wambui Karuga
, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_opregion.c | 134 +++--- 1 file changed, 80 insertions(+), 54 deletions(-) diff --git a/drivers/gpu/drm

[Intel-gfx] [PATCH 0/6] conversion to struct drm_device logging macros.

2020-01-21 Thread Wambui Karuga
struct drm_i915_private *T = ...; <+... ( -DRM_INFO( +drm_info(>drm, ...) | -DRM_ERROR( +drm_err(>drm, ...) | -DRM_WARN( +drm_warn(>drm, ...) | -DRM_DEBUG( +drm_dbg(>drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_d

[Intel-gfx] [PATCH 6/6] drm/i915/hdcp: conversion to struct drm_device based logging macros

2020-01-21 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_hdcp.c | 138 +- 1 file changed, 81 insertions(

[Intel-gfx] [PATCH 4/6] drm/i915/dp: conversion to struct drm_device logging macros.

2020-01-21 Thread Wambui Karuga
, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_dp.c | 349 ++-- 1 file changed, 201 insertions(+), 148 deletions(-) diff --git a/drivers/gpu/drm/i

[Intel-gfx] [PATCH v2 1/5] drm/i915/atomic: use struct drm_device logging macros

2020-01-21 Thread Wambui Karuga
Convert to the new struct drm_based logging macros to replace the printk based macros in i915/display/intel_atomic_plane.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_atomic_plane.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/gpu

[Intel-gfx] [PATCH v2 3/5] drm/i915/audio: convert to struct drm_device logging macros.

2020-01-21 Thread Wambui Karuga
drm, ...) ) ...+> } Checkpatch warnings were manually fixed. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_audio.c | 73 +- 1 file changed, 42 insertions(+), 31 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_audio.c b/drivers/gpu/d

[Intel-gfx] [PATCH v2 5/5] drm/i915/cdclk: use new struct drm_device logging macros

2020-01-21 Thread Wambui Karuga
m, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) ) ...+> } Resulting checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_cdclk.c | 109 - 1 file changed, 64 insertions(+), 45 deletions(-) diff --git a/drivers/gpu/d

[Intel-gfx] [PATCH v2 4/5] drm/i915/bw: convert to drm_device based logging macros

2020-01-21 Thread Wambui Karuga
( +drm_dbg(>drm, ...) ) ...+> } Resulting checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_bw.c | 29 +++-- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel

[Intel-gfx] [PATCH 1/6] drm/i915/dsi: conversion to struct drm_device log macros

2020-01-21 Thread Wambui Karuga
, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/icl_dsi.c | 82 -- 1 file

[Intel-gfx] [PATCH 3/6] drm/i915/power: convert to struct drm_device macros in display/intel_display_power.c

2020-01-21 Thread Wambui Karuga
, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- .../drm/i915/display/intel_display_power.c| 177 ++ 1 file changed, 99 insertions(+), 78 deletions(-) diff --git a/drivers/gpu/drm/i915/display

[Intel-gfx] [PATCH] drm/i915/display: convert to struct drm_device logging macros.

2020-01-21 Thread Wambui Karuga
. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_display.c | 1021 ++ 1 file changed, 596 insertions(+), 425 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 76c17341df2b..0b844eeff9dc 100644

[Intel-gfx] [PATCH 16/21] drm/i915: make *_debugfs_register() functions return void.

2020-02-27 Thread Wambui Karuga
-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_display_debugfs.c | 8 drivers/gpu/drm/i915/display/intel_display_debugfs.h | 4 ++-- drivers/gpu/drm/i915/i915_debugfs.c | 8 drivers/gpu/drm/i915/i915_debugfs.h | 4 ++-- 4 files

[Intel-gfx] [PATCH v2 4/6] drm/i915/dp: conversion to struct drm_device logging macros.

2020-01-23 Thread Wambui Karuga
, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were fixed manually. v2: fix merge conflict with new changes in file. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_dp.c | 357 ++-- 1 file changed, 205 insertions(+), 152 d

[Intel-gfx] [PATCH v2 3/6] drm/i915/power: convert to struct drm_device macros in display/intel_display_power.c

2020-01-23 Thread Wambui Karuga
, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- .../drm/i915/display/intel_display_power.c| 177 ++ 1 file changed, 99 insertions(+), 78 deletions(-) diff --git a/drivers/gpu/drm/i915/display

[Intel-gfx] [PATCH v2 2/6] drm/i915/ddi: convert to struct drm_device log macros.

2020-01-23 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_ddi.c | 98 +++- 1 file changed, 60 insertions(+), 38 d

Re: [Intel-gfx] ✗ Fi.CI.BUILD: failure for conversion to struct drm_device logging macros.

2020-01-23 Thread Wambui Karuga
On Tue, 21 Jan 2020, Patchwork wrote: == Series Details == Series: conversion to struct drm_device logging macros. URL : https://patchwork.freedesktop.org/series/72349/ State : failure == Summary == Applying: drm/i915/dsi: conversion to struct drm_device log macros Applying:

[Intel-gfx] [PATCH v2 6/6] drm/i915/hdcp: conversion to struct drm_device based logging macros.

2020-01-23 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_hdcp.c | 138 +- 1 file changed, 81 insertions(

[Intel-gfx] [PATCH v2 5/6] drm/i915/opregion: conversion to struct drm_device logging macros.

2020-01-23 Thread Wambui Karuga
, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_opregion.c | 134 +++--- 1 file changed, 80 insertions(+), 54 deletions(-) diff --git a/drivers/gpu/drm

[Intel-gfx] [PATCH 1/2] drm/i915/gem: initial conversion to new logging macros using coccinelle

2020-01-23 Thread Wambui Karuga
drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gem/i915_gem_context.c | 27 + .../gpu/drm/i915/gem/i

[Intel-gfx] [PATCH 0/2] drm/i915/gem: conversion to new drm logging macros

2020-01-23 Thread Wambui Karuga
This series is a part of the conversion to the new struct drm_device based logging macros in drm/i915. This series focuses on the drm/i915/gem directory and converts all straightforward instances of the printk based logging macros to the new macros. Wambui Karuga (2): drm/i915/gem: initial

[Intel-gfx] [PATCH v2 1/6] drm/i915/dsi: conversion to struct drm_device log macros.

2020-01-23 Thread Wambui Karuga
, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } New checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/icl_dsi.c | 82 -- 1 file

[Intel-gfx] [PATCH v2 0/6] conversion to struct drm_device logging macros.

2020-01-23 Thread Wambui Karuga
This series continues the ongoing conversion to the new struct drm_device based logging macros for debug in i915. v2: address merge conflict in i915/display/intel_dp.c due to newer changes in file. Wambui Karuga (6): drm/i915/dsi: conversion to struct drm_device log macros drm/i915/ddi

[Intel-gfx] [PATCH 2/2] drm/i915/gem: manual conversion to struct drm_device logging macros.

2020-01-23 Thread Wambui Karuga
Convert most of the remaining uses of the printk based logging macros to the new struct drm_device based logging macros in drm/i915/gem. This also involves extracting the struct drm_i915_private device from various types, and using it in the various macros. Signed-off-by: Wambui Karuga

[Intel-gfx] [PATCH v2] drm/i915/display: conversion to new struct drm_device logging macros.

2020-01-23 Thread Wambui Karuga
: use correct variable name in assignment over variable type. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_display.c | 1021 ++ 1 file changed, 596 insertions(+), 425 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm

[Intel-gfx] [PATCH 1/8] drm/i915/gt: conversion to struct drm_device macros when struct drm_i915_private is available.

2020-01-27 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt/intel_engine_user.c | 2 +- drivers/gpu/drm/i915/gt/intel_ggtt.c

[Intel-gfx] [PATCH 0/8] drm/i915/gt conversion to new drm logging macros.

2020-01-27 Thread Wambui Karuga
This series continues the conversion to the new drm logging macros focused on the drm/i915/gt folder. This was done both manually and using coccinelle. Wambui Karuga (8): drm/i915/gt: conversion to struct drm_device macros when struct drm_i915_private is available. drm/i915/ggtt: use new

[Intel-gfx] [PATCH 6/8] drm/i915/gt: convert to new logging macros in gt/intel_gt.c

2020-01-27 Thread Wambui Karuga
Convert remaining instances of the printk based logging macros in i915/gt/intel_gt to the struct drm_device based logging macros. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt/intel_gt.c | 43 +++--- 1 file changed, 21 insertions(+), 22 deletions(-) diff

[Intel-gfx] [PATCH 7/8] drm/i915/ring: convert to new logging macros in gt/intel_ring_submission.c

2020-01-27 Thread Wambui Karuga
Manually convert the remaining instance of the printk based drm logging macros to the struct drm_device based logging macros in i915/gt/intel_ring_submission.c Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt/intel_ring_submission.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion

[Intel-gfx] [PATCH 4/8] drm/i915/engine_cs: use new drm logging macros in gt/intel_engine_cs.c

2020-01-27 Thread Wambui Karuga
Conversion of the remaining printk based drm logging macros to the new struct drm_device based logging macros in i915/gt/intel_engine_cs.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt/intel_engine_cs.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git

[Intel-gfx] [PATCH 5/8] drm/i915/lrc: conversion to new drm logging macros in gt/intel_lrc.c

2020-01-27 Thread Wambui Karuga
Converts most instances of the printk based drm logging macros in i915/gt/intel_lrc.c to the new struct drm_device based logging macros. In some instances, extracts the struct drm_i915_private device for use in the logging macros. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt

[Intel-gfx] [PATCH 3/8] drm/i915/reset: conversion to new drm logging macros in gt/intel_reset.c

2020-01-27 Thread Wambui Karuga
This converts most instances of the printk based drm logging macros in i915/gt/intel_resect.c to the new struct drm_based logging macros. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt/intel_reset.c | 48 +++ 1 file changed, 26 insertions(+), 22 deletions

[Intel-gfx] [PATCH 8/8] drm/i915/rps: move to new drm logging macros in gt/intel_rps.c

2020-01-27 Thread Wambui Karuga
Convert various instances of the printk based drm logging macros to the new struct drm_device based logging macros in i915/gt/intel_rps.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt/intel_rps.c | 15 ++- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git

[Intel-gfx] [PATCH 2/8] drm/i915/ggtt: use new drm logging macros in gt/intel_ggtt.c

2020-01-27 Thread Wambui Karuga
Manual conversion of the printk based logging macros to the new struct drm_based logging macros in drm/i915/gt/intel_ggtt.c. Also includes extracting the struct drm_i915_private device from various intel types to use in the new macros. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/gt

[Intel-gfx] [PATCH 07/12] drm/i915/sprite: automatic conversion to drm_device based logging macros

2020-01-30 Thread Wambui Karuga
m, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_sprite.c | 60 - 1 file

[Intel-gfx] [PATCH 02/12] drm/i915/vlv_dsi: conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/vlv_dsi.c | 80 +++--- 1 file changed, 46 insertions(+), 34 d

[Intel-gfx] [PATCH 01/12] drm/i915/vlv_dsi_pll: conversion to struct drm_device logging macros.

2020-01-30 Thread Wambui Karuga
( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/vlv_dsi_pll.c | 47 -- 1 file changed, 26 insertions(+), 21 deletions(-) diff --git a

[Intel-gfx] [PATCH 06/12] drm/i915/tc: automatic conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_tc.c | 33 ++--- 1 file changed, 19 insertions(+), 14 d

[Intel-gfx] [PATCH 11/12] drm/i915/pipe_crc: automatic conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
IVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_pipe_crc.c | 7 --- 1 file changed, 4 insertions

[Intel-gfx] [PATCH 04/12] drm/i915/vdsc: convert to struct drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
(>drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_vdsc.c | 28 +++ 1 file changed, 14 insert

[Intel-gfx] [PATCH 00/12] drm/i915/display: conversion to drm_device based logging macros

2020-01-30 Thread Wambui Karuga
+drm_dbg(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Wambui Karuga (12): drm/i915/vlv_dsi_pll: conversion to struct drm_device logging macros. drm/i915/vlv_dsi: convers

[Intel-gfx] [PATCH 03/12] drm/i915/vga: conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_vga.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/gp

[Intel-gfx] [PATCH 05/12] drm/i915/tv: automatic conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_tv.c | 26 ++--- 1 file changed, 15 insertions(+), 11 deletions(-)

[Intel-gfx] [PATCH 10/12] drm/i915/psr: automatic conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_psr.c | 128 ++- 1 file changed, 77 insertions(+), 51 d

[Intel-gfx] [PATCH 08/12] drm/i915/sdvo: automatic conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
m, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_sdvo.c | 29 +-- 1 file

[Intel-gfx] [PATCH 12/12] drm/i915/panel: automatic conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
IVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_panel.c | 100 - 1 file changed, 5

[Intel-gfx] [PATCH 09/12] drm/i915/quirks: automatic conversion to drm_device based logging macros.

2020-01-30 Thread Wambui Karuga
drm, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_quirks.c | 10 +- 1 file changed, 5 insertions(+), 5 d

[Intel-gfx] [PATCH v2 05/12] drm/i915/crt: automatic conversion to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_crt.c | 49 +++- 1 file changed, 31 insertions(

[Intel-gfx] [PATCH v2 01/12] drm/i915/dp: convert to struct drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
Converts various instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_dp.c. This also involves extracting the struct drm_i915_private device pointer from various intel types to be used in the macros. Signed-off-by: Wambui Karuga

[Intel-gfx] [PATCH v2 06/12] drm/i915/dp_aux_backlight: convert to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- .../drm/i915/display/intel_dp_aux_backlight.c | 72 --- 1 file changed, 45 insertions(+), 27 deletions(-) diff --git a/drivers/gpu/drm/i915/display

[Intel-gfx] [PATCH v2 04/12] drm/i915/color: conversion to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
Initial conversion of the straightforward printk based logging macros to the struct drm_device based logging macros in i915/display/intel_color.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_color.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[Intel-gfx] [PATCH v2 00/12] drm/i915/display: convert to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
This patchset continues the conversion of the printk based drm logging macros in drm/i915 to use the struct drm_device based logging macros. This series was done both using coccinelle and manually. v2: rebase onto drm-tip to fix conflicts with new changes in drm/i915. Wambui Karuga (12): drm

[Intel-gfx] [PATCH v2 09/12] drm/i915/dp_mst: convert to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
Conversion of instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_dp_mst.c. This also involves extracting the drm_i915_private device pointer from various intel types to use in the macros. Signed-off-by: Wambui Karuga --- drivers

[Intel-gfx] [PATCH v2 02/12] drm/i915/dp_link_training: convert to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
Converts various instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_dp_link_training.c. This also involves extracting the drm_i915_private device pointer from the intel_dp type to use in the various macros. Signed-off-by: Wambui

[Intel-gfx] [PATCH v2 03/12] drm/i915/atomic: conversion to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_atomic.c | 23 - 1 file changed, 13 in

[Intel-gfx] [PATCH v2 10/12] drm/i915/dsi_vbt: convert to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
to drm_dbg(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_dsi_vbt.c | 162 +++ 1 file changed, 99 insertions(+), 63 deletions(-) diff --git a/drivers/gpu/drm/i915

[Intel-gfx] [PATCH v2 07/12] drm/i915/dpll_mgr: convert to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
that this converts DRM_DEBUG_DRIVER to drm_dbg(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 254 ++ 1 file changed, 142 insertions(+), 112 deletions(-) diff --git

[Intel-gfx] [PATCH v2 08/12] drm/i915/combo_phy: convert to struct drm_device logging macros.

2020-02-06 Thread Wambui Karuga
, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } This converts DRM_DEBUG/DRM_DEBUG_DRIVER to drm_dbg(). New checkpatch warnings were addressed manually. References: https://lists.freedesktop.org/archives/dr

[Intel-gfx] [PATCH v2 12/12] drm/i915/dpio_phy: convert to drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Note that this converts both DRM_DEBUG/DRM_DEBUG_DRIVER to drm_dbg(). Checkpatch warnings were fixed manually. References: https://lists.freedesktop.org/archives/dri-devel

[Intel-gfx] [PATCH v2 11/12] drm/i915/hdmi: convert to struct drm_device based logging macros.

2020-02-06 Thread Wambui Karuga
DRM_DEBUG_DRIVER() to drm_dbg(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_hdmi.c | 193 ++ 1 file changed, 128 insertions(+), 65 deletions(-) diff --git a/drivers/gpu

[Intel-gfx] [PATCH 0/5] drm/i915: conversion to new struct drm_device based logging macros.

2020-01-31 Thread Wambui Karuga
This patch series continues the conversion of the printk based logging macros to the struct drm_device based logging macros in drm/i915. This series focuses on the root drm/i915 driver folder with patches achieved manually and using coccinelle. Wambui Karuga (5): drm/i915: conversion

[Intel-gfx] [PATCH 1/5] drm/i915: conversion to drm_device logging macros when drm_i915_private is present.

2020-01-31 Thread Wambui Karuga
| -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Instances of the DRM_DEBUG macro were not converted due to lack of a consensus of an analogous struct drm_device based macro. References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Si

[Intel-gfx] [PATCH 3/5] drm/i915/cmd_parser: conversion to struct drm_device logging macros.

2020-01-31 Thread Wambui Karuga
of a similar struct drm_device based logging macro. References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/i915_cmd_parser.c | 29 +++--- 1 file changed, 17 insertions(+), 12 deletions(-) diff

[Intel-gfx] [PATCH 4/5] drm/i915/perf: conversion to struct drm_device based logging macros.

2020-01-31 Thread Wambui Karuga
not converted due to the lack of an analogous struct drm_device based logging macro. References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/i915_perf.c | 143 --- 1 file changed, 91

[Intel-gfx] [PATCH 2/5] drm/i915/debugfs: conversion to drm_device based logging macros.

2020-01-31 Thread Wambui Karuga
to the lack of an analogous struct drm_device based logging macro. References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/i915_debugfs.c | 21 + 1 file changed, 13 insertions(+), 8 deletions

[Intel-gfx] [PATCH 5/5] drm/i915/pci: conversion to drm_device based logging macros.

2020-01-31 Thread Wambui Karuga
Manual conversion of instances of printk based drm logging macros to the struct drm_device based logging macros in i915/i915_pci.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/i915_pci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915

[Intel-gfx] [PATCH 08/12] drm/i915/combo_phy: convert to struct drm_device logging macros.

2020-02-04 Thread Wambui Karuga
, ...) | -DRM_DEBUG_KMS( +drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } This converts DRM_DEBUG/DRM_DEBUG_DRIVER to drm_dbg(). New checkpatch warnings were addressed manually. References: https://lists.freedesktop.org/archives/dr

[Intel-gfx] [PATCH 09/12] drm/i915/dp_mst: convert to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
Conversion of instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_dp_mst.c. This also involves extracting the drm_i915_private device pointer from various intel types to use in the macros. Signed-off-by: Wambui Karuga --- drivers

[Intel-gfx] [PATCH 02/12] drm/i915/dp_link_training: convert to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
Converts various instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_dp_link_training.c. This also involves extracting the drm_i915_private device pointer from the intel_dp type to use in the various macros. Signed-off-by: Wambui

[Intel-gfx] [PATCH 05/12] drm/i915/crt: automatic conversion to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were addressed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_crt.c | 49 +++- 1 file changed, 31 insertions(

[Intel-gfx] [PATCH 10/12] drm/i915/dsi_vbt: convert to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
to drm_dbg(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_dsi_vbt.c | 162 +++ 1 file changed, 99 insertions(+), 63 deletions(-) diff --git a/drivers/gpu/drm/i915

[Intel-gfx] [PATCH 12/12] drm/i915/dpio_phy: convert to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
;drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Note that this converts both DRM_DEBUG/DRM_DEBUG_DRIVER to drm_dbg(). Checkpatch warnings were fixed manually. References: https://lists.freedesktop.org/archives/dri-devel

[Intel-gfx] [PATCH 07/12] drm/i915/dpll_mgr: convert to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
that this converts DRM_DEBUG_DRIVER to drm_dbg(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_dpll_mgr.c | 254 ++ 1 file changed, 142 insertions(+), 112 deletions(-) diff --git

[Intel-gfx] [PATCH 01/12] drm/i915/dp: convert to struct drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
Converts various instances of the printk based drm logging macros to the struct drm_device based logging macros in i915/display/intel_dp.c. This also involves extracting the struct drm_i915_private device pointer from various intel types to be used in the macros. Signed-off-by: Wambui Karuga

[Intel-gfx] [PATCH 06/12] drm/i915/dp_aux_backlight: convert to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- .../drm/i915/display/intel_dp_aux_backlight.c | 72 --- 1 file changed, 45 insertions(+), 27 deletions(-) diff --git a/drivers/gpu/drm/i915/display

[Intel-gfx] [PATCH 11/12] drm/i915/hdmi: convert to struct drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
DRM_DEBUG_DRIVER() to drm_dbg(). References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_hdmi.c | 193 ++ 1 file changed, 128 insertions(+), 65 deletions(-) diff --git a/drivers/gpu

[Intel-gfx] [PATCH 04/12] drm/i915/color: conversion to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
Initial conversion of the straightforward printk based logging macros to the struct drm_device based logging macros in i915/display/intel_color.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_color.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git

[Intel-gfx] [PATCH 03/12] drm/i915/atomic: conversion to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
drm_dbg_kms(>drm, ...) | -DRM_DEBUG_DRIVER( +drm_dbg(>drm, ...) | -DRM_DEBUG_ATOMIC( +drm_dbg_atomic(>drm, ...) ) ...+> } Checkpatch warnings were fixed manually. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/display/intel_atomic.c | 23 - 1 file changed, 13 in

[Intel-gfx] [PATCH 00/12] drm/i915: conversion to drm_device based logging macros.

2020-02-04 Thread Wambui Karuga
This patchset continues the conversion of printk based logging macros to the struct drm_device based logging macros in drm/i915, this time focusing on the i915/display folder. The patches were achieved manually and using coccinelle. Wambui Karuga (12): drm/i915/dp: convert to struct drm_device

Re: [Intel-gfx] [PATCH] drm/i915/hdmi: prefer to_i915() over drm->dev_private to get at i915

2020-02-11 Thread Wambui Karuga
On Tue, 11 Feb 2020, Jani Nikula wrote: drm->dev_private is to be avoided. Use to_i915() on the struct drm_device pointer instead. Rename the affected local dev_priv variables to i915 while at it. Applies cleanly, and compiles. Changes also look good to me. Reviewed by: Wambui Kar

Re: [Intel-gfx] [PATCH v2 11/12] drm/i915/hdmi: convert to struct drm_device based logging macros.

2020-02-11 Thread Wambui Karuga
On Tue, 11 Feb 2020, Jani Nikula wrote: On Thu, 06 Feb 2020, Wambui Karuga wrote: @@ -1364,11 +1372,15 @@ int intel_hdmi_hdcp_write_an_aksv(struct intel_digital_port *intel_dig_port, static int intel_hdmi_hdcp_read_bksv(struct intel_digital_port *intel_dig_port

[Intel-gfx] [PATCH] drm/i915: make i915_debugfs_register return void.

2020-02-18 Thread Wambui Karuga
As drm_debugfs_create_files should return void, remove its use as the return value of i915_debugfs_register and have i915_debugfs_register return void. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/i915_debugfs.c | 8 drivers/gpu/drm/i915/i915_debugfs.h | 4 ++-- 2 files

[Intel-gfx] [PATCH v2] drm/i915/perf: conversion to struct drm_device based logging macros.

2020-02-18 Thread Wambui Karuga
not converted due to the lack of an analogous struct drm_device based logging macro. v2: remove instances of DRM_DEBUG that were converted. References: https://lists.freedesktop.org/archives/dri-devel/2020-January/253381.html Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/i915_perf.c | 27

[Intel-gfx] [PATCH 3/5] drm/i915: conversion to new logging macros in i915/intel_device_info.c

2020-01-09 Thread Wambui Karuga
This replaces the printk and struct device based logging macros with the new struct drm_device style based logging macros i915/intel_device_info.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/intel_device_info.c | 25 +--- 1 file changed, 14 insertions(+), 11

[Intel-gfx] [PATCH 1/5] drm/i915: conversion to new logging macros in i915/i915_vgpu.c

2020-01-09 Thread Wambui Karuga
Replace the use of printk based logging macros with the struct drm_device based macros in i915/i915_vgpu.c Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/i915_vgpu.c | 41 +++- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/drivers/gpu/drm

[Intel-gfx] [PATCH 0/5] Use new logging macros in drm/i915

2020-01-09 Thread Wambui Karuga
This patchset continues the conversion to using the new struct drm_device based logging macros in drm/i915. Wambui Karuga (5): drm/i915: conversion to new logging macros in i915/i915_vgpu.c drm/i915: conversion to new logging macros in i915/intel_csr.c drm/i915: conversion to new logging

[Intel-gfx] [PATCH 5/5] drm/i915: convert to new logging macros in i915/intel_memory_region.c

2020-01-09 Thread Wambui Karuga
Replace the use of printk based logging macros with the new struct drm_device based logging macro in i915/intel_memory_region.c. Signed-off-by: Wambui Karuga --- drivers/gpu/drm/i915/intel_memory_region.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm

  1   2   >