OSDN Git Service

drm/i915: Extract i915_module.c
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 27 Jul 2021 12:10:37 +0000 (14:10 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 28 Jul 2021 15:20:05 +0000 (17:20 +0200)
commit708b7df3480aff61449e848876876b930ce93c4a
tree4bbbf0e41906b02deb60afab0f6adea1a063e95a
parentbb13ea2825356de476b142b8186ea595a722c2b1
drm/i915: Extract i915_module.c

The module init code is somewhat misplaced in i915_pci.c, since it
needs to pull in init/exit functions from every part of the driver and
pollutes the include list a lot.

Extract an i915_module.c file which pulls all the bits together, and
allows us to massively trim the include list of i915_pci.c.

The downside is that have to drop the error path check Jason added to
catch when we set up the pci driver too early. I think that risk is
acceptable for this pretty nice include.

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Cc: Jason Ekstrand <jason@jlekstrand.net>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210727121037.2041102-11-daniel.vetter@ffwll.ch
drivers/gpu/drm/i915/Makefile
drivers/gpu/drm/i915/i915_module.c [new file with mode: 0644]
drivers/gpu/drm/i915/i915_pci.c
drivers/gpu/drm/i915/i915_pci.h [new file with mode: 0644]