[Intel-gfx] [PATCH 09/17] drm/i915/switcheroo: use struct drm_device based logging
Wambui Karuga
wambui.karugax at gmail.com
Wed Apr 8 08:12:21 UTC 2020
On Thu, 2 Apr 2020, Jani Nikula wrote:
> Convert all the pr_* logging macros to the struct drm_device based
> macros to provide device specific logging.
>
> No functional changes.
>
> Cc: Wambui Karuga <wambui.karugax at gmail.com>
> Signed-off-by: Jani Nikula <jani.nikula at intel.com>
Reviewed-by: Wambui Karuga <wambui.karugax at gmail.com>
> ---
> drivers/gpu/drm/i915/i915_switcheroo.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_switcheroo.c b/drivers/gpu/drm/i915/i915_switcheroo.c
> index ed69b5d4a375..b3a24eac21f1 100644
> --- a/drivers/gpu/drm/i915/i915_switcheroo.c
> +++ b/drivers/gpu/drm/i915/i915_switcheroo.c
> @@ -20,14 +20,14 @@ static void i915_switcheroo_set_state(struct pci_dev *pdev,
> }
>
> if (state == VGA_SWITCHEROO_ON) {
> - pr_info("switched on\n");
> + drm_info(&i915->drm, "switched on\n");
> i915->drm.switch_power_state = DRM_SWITCH_POWER_CHANGING;
> /* i915 resume handler doesn't set to D0 */
> pci_set_power_state(pdev, PCI_D0);
> i915_resume_switcheroo(i915);
> i915->drm.switch_power_state = DRM_SWITCH_POWER_ON;
> } else {
> - pr_info("switched off\n");
> + drm_info(&i915->drm, "switched off\n");
> i915->drm.switch_power_state = DRM_SWITCH_POWER_CHANGING;
> i915_suspend_switcheroo(i915, pmm);
> i915->drm.switch_power_state = DRM_SWITCH_POWER_OFF;
> --
> 2.20.1
>
>
More information about the Intel-gfx
mailing list