On Thu, 11 Nov 2021, Jani Nikula <jani.nikula@xxxxxxxxx> 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@xxxxxxxxx> > --- > 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