Re: [PATCH] drm/vmwgfx: Stop using dev_private to store driver data.

2024-05-01 Thread Zack Rusin
On Wed, May 1, 2024 at 8:41 PM Maaz Mombasawala wrote: > > Currently vmwgfx uses the dev_private opaque pointer in drm_device to store > driver data in vmw_private struct. Using dev_private is deprecated, and the > recommendation is to embed struct drm_device in the larger per-device > structure.

[PATCH] drm/vmwgfx: Stop using dev_private to store driver data.

2024-05-01 Thread Maaz Mombasawala
Currently vmwgfx uses the dev_private opaque pointer in drm_device to store driver data in vmw_private struct. Using dev_private is deprecated, and the recommendation is to embed struct drm_device in the larger per-device structure. The vmwgfx driver already embeds struct drm_device in its struct