>-----Original Message----- >From: Intel-gfx <[email protected]> On Behalf Of >Thomas Zimmermann >Sent: Thursday, April 29, 2021 6:51 AM >To: [email protected]; [email protected]; Vivi, Rodrigo ><[email protected]>; [email protected]; [email protected]; chris@chris- >wilson.co.uk >Cc: Winiarski, Michal <[email protected]>; Nikula, Jani ><[email protected]>; Daniel Vetter <[email protected]>; intel- >[email protected]; De Marchi, Lucas <[email protected]>; dri- >[email protected]; Auld, Matthew <[email protected]>; >Thomas Zimmermann <[email protected]> >Subject: [Intel-gfx] [PATCH v8 2/5] drm/i915/gt: Remove reference to struct >drm_device.pdev > >References to struct drm_device.pdev should not be used any longer as >the field will be moved into the struct's legacy section. Add a fix >for the rsp commit. > >v8: > * fix commit message (Michael)
Reviewed-by: Michael J. Ruhl <[email protected]> m >Signed-off-by: Thomas Zimmermann <[email protected]> >Fixes: a50ca39fbd01 ("drm/i915: setup the LMEM region") >Cc: Lucas De Marchi <[email protected]> >Cc: Joonas Lahtinen <[email protected]> >Cc: Rodrigo Vivi <[email protected]> >Cc: Matthew Auld <[email protected]> >Cc: Jani Nikula <[email protected]> >Cc: Chris Wilson <[email protected]> >Cc: Daniel Vetter <[email protected]> >Cc: Tvrtko Ursulin <[email protected]> >Cc: Daniele Ceraolo Spurio <[email protected]> >Cc: Mika Kuoppala <[email protected]> >Cc: Maarten Lankhorst <[email protected]> >Cc: Venkata Sandeep Dhanalakota <[email protected]> >Cc: "MichaĆ Winiarski" <[email protected]> >--- > drivers/gpu/drm/i915/gt/intel_region_lmem.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/drivers/gpu/drm/i915/gt/intel_region_lmem.c >b/drivers/gpu/drm/i915/gt/intel_region_lmem.c >index be6f2c8f5184..73fceb0c25fc 100644 >--- a/drivers/gpu/drm/i915/gt/intel_region_lmem.c >+++ b/drivers/gpu/drm/i915/gt/intel_region_lmem.c >@@ -177,7 +177,7 @@ static struct intel_memory_region >*setup_lmem(struct intel_gt *gt) > { > struct drm_i915_private *i915 = gt->i915; > struct intel_uncore *uncore = gt->uncore; >- struct pci_dev *pdev = i915->drm.pdev; >+ struct pci_dev *pdev = to_pci_dev(i915->drm.dev); > struct intel_memory_region *mem; > resource_size_t io_start; > resource_size_t lmem_size; >-- >2.31.1 > >_______________________________________________ >Intel-gfx mailing list >[email protected] >https://lists.freedesktop.org/mailman/listinfo/intel-gfx _______________________________________________ dri-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/dri-devel
