All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Subject: Re: [Intel-gfx] [PATCH 1/3] drm/i915/driver: rename i915_drv.c to i915_driver.c
Date: Wed, 17 Nov 2021 11:49:50 +0200	[thread overview]
Message-ID: <871r3f158h.fsf@intel.com> (raw)
In-Reply-To: <20211111101304.13094-1-jani.nikula@intel.com>

On Thu, 11 Nov 2021, Jani Nikula <jani.nikula@intel.com> wrote:
> This is more about trimming i915_drv.h than the renamed
> i915_driver.[ch]. Split out i915_driver.[ch] out of i915_drv.h as a
> feasible thing to do.

Pushed the series with Daniel's IRC ack.

BR,
Jani.


>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/Makefile                 |  2 +-
>  .../drm/i915/{i915_drv.c => i915_driver.c}    |  5 ++--
>  drivers/gpu/drm/i915/i915_driver.h            | 24 +++++++++++++++++++
>  drivers/gpu/drm/i915/i915_drv.h               | 11 +--------
>  drivers/gpu/drm/i915/i915_pci.c               |  1 +
>  drivers/gpu/drm/i915/i915_switcheroo.c        |  1 +
>  6 files changed, 31 insertions(+), 13 deletions(-)
>  rename drivers/gpu/drm/i915/{i915_drv.c => i915_driver.c} (99%)
>  create mode 100644 drivers/gpu/drm/i915/i915_driver.h
>
> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
> index 7d0d0b814670..074d6b8edd23 100644
> --- a/drivers/gpu/drm/i915/Makefile
> +++ b/drivers/gpu/drm/i915/Makefile
> @@ -30,7 +30,7 @@ subdir-ccflags-y += -I$(srctree)/$(src)
>  # Please keep these build lists sorted!
>  
>  # core driver code
> -i915-y += i915_drv.o \
> +i915-y += i915_driver.o \
>  	  i915_config.o \
>  	  i915_irq.o \
>  	  i915_getparam.o \
> diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_driver.c
> similarity index 99%
> rename from drivers/gpu/drm/i915/i915_drv.c
> rename to drivers/gpu/drm/i915/i915_driver.c
> index 46bf3315f616..9111abafa44f 100644
> --- a/drivers/gpu/drm/i915/i915_drv.c
> +++ b/drivers/gpu/drm/i915/i915_driver.c
> @@ -29,8 +29,8 @@
>  
>  #include <linux/acpi.h>
>  #include <linux/device.h>
> -#include <linux/oom.h>
>  #include <linux/module.h>
> +#include <linux/oom.h>
>  #include <linux/pci.h>
>  #include <linux/pm.h>
>  #include <linux/pm_runtime.h>
> @@ -48,8 +48,8 @@
>  #include "display/intel_acpi.h"
>  #include "display/intel_bw.h"
>  #include "display/intel_cdclk.h"
> -#include "display/intel_dmc.h"
>  #include "display/intel_display_types.h"
> +#include "display/intel_dmc.h"
>  #include "display/intel_dp.h"
>  #include "display/intel_dpt.h"
>  #include "display/intel_fbdev.h"
> @@ -72,6 +72,7 @@
>  #include "pxp/intel_pxp_pm.h"
>  
>  #include "i915_debugfs.h"
> +#include "i915_driver.h"
>  #include "i915_drv.h"
>  #include "i915_ioc32.h"
>  #include "i915_irq.h"
> diff --git a/drivers/gpu/drm/i915/i915_driver.h b/drivers/gpu/drm/i915/i915_driver.h
> new file mode 100644
> index 000000000000..e99c00fb6312
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/i915_driver.h
> @@ -0,0 +1,24 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2019 Intel Corporation
> + */
> +
> +#ifndef __I915_DRIVER_H__
> +#define __I915_DRIVER_H__
> +
> +#include <linux/pm.h>
> +
> +struct pci_dev;
> +struct pci_device_id;
> +struct drm_i915_private;
> +
> +extern const struct dev_pm_ops i915_pm_ops;
> +
> +int i915_driver_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
> +void i915_driver_remove(struct drm_i915_private *i915);
> +void i915_driver_shutdown(struct drm_i915_private *i915);
> +
> +int i915_resume_switcheroo(struct drm_i915_private *i915);
> +int i915_suspend_switcheroo(struct drm_i915_private *i915, pm_message_t state);
> +
> +#endif /* __I915_DRIVER_H__ */
> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
> index 94840af45750..72619a030b0c 100644
> --- a/drivers/gpu/drm/i915/i915_drv.h
> +++ b/drivers/gpu/drm/i915/i915_drv.h
> @@ -1785,16 +1785,7 @@ intel_vm_no_concurrent_access_wa(struct drm_i915_private *i915)
>  	return IS_CHERRYVIEW(i915) || intel_ggtt_update_needs_vtd_wa(i915);
>  }
>  
> -/* i915_drv.c */
> -extern const struct dev_pm_ops i915_pm_ops;
> -
> -int i915_driver_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
> -void i915_driver_remove(struct drm_i915_private *i915);
> -void i915_driver_shutdown(struct drm_i915_private *i915);
> -
> -int i915_resume_switcheroo(struct drm_i915_private *i915);
> -int i915_suspend_switcheroo(struct drm_i915_private *i915, pm_message_t state);
> -
> +/* i915_getparam.c */
>  int i915_getparam_ioctl(struct drm_device *dev, void *data,
>  			struct drm_file *file_priv);
>  
> diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c
> index 5e6795853dc3..d7548605aa08 100644
> --- a/drivers/gpu/drm/i915/i915_pci.c
> +++ b/drivers/gpu/drm/i915/i915_pci.c
> @@ -27,6 +27,7 @@
>  #include <drm/drm_drv.h>
>  #include <drm/i915_pciids.h>
>  
> +#include "i915_driver.h"
>  #include "i915_drv.h"
>  #include "i915_pci.h"
>  
> diff --git a/drivers/gpu/drm/i915/i915_switcheroo.c b/drivers/gpu/drm/i915/i915_switcheroo.c
> index de0e224b56ce..7f06f5ad0749 100644
> --- a/drivers/gpu/drm/i915/i915_switcheroo.c
> +++ b/drivers/gpu/drm/i915/i915_switcheroo.c
> @@ -5,6 +5,7 @@
>  
>  #include <linux/vga_switcheroo.h>
>  
> +#include "i915_driver.h"
>  #include "i915_drv.h"
>  #include "i915_switcheroo.h"

-- 
Jani Nikula, Intel Open Source Graphics Center

      parent reply	other threads:[~2021-11-17  9:49 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-11 10:13 [Intel-gfx] [PATCH 1/3] drm/i915/driver: rename i915_drv.c to i915_driver.c Jani Nikula
2021-11-11 10:13 ` [Intel-gfx] [PATCH 2/3] drm/i915/driver: rename driver to i915_drm_driver Jani Nikula
2021-11-11 10:13 ` [Intel-gfx] [PATCH 3/3] drm/i915/driver: add i915_driver_ prefix to functions Jani Nikula
2021-11-11 11:30 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/driver: rename i915_drv.c to i915_driver.c Patchwork
2021-11-11 11:31 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-11-11 11:59 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-11-11 15:09 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-11-17  9:49 ` Jani Nikula [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871r3f158h.fsf@intel.com \
    --to=jani.nikula@intel.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=intel-gfx@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.