Re: [PATCH] drm/gma500: Do not clear framebuffer GEM objects during cleanup

2025-09-08 Thread Patrik Jakobsson
On Thu, Sep 4, 2025 at 2:14 PM Thomas Zimmermann wrote: > > Gma500 unnecessarily clears the framebuffer's GEM-object pointer > before calling drm_framebuffer_cleanup(). Remove this code to make > gma500 consistent with the rest of the drivers. > > The change is cosmetic, as drm_framebuffer_cleanup

[PATCH] drm/gma500: Do not clear framebuffer GEM objects during cleanup

2025-09-04 Thread Thomas Zimmermann
Gma500 unnecessarily clears the framebuffer's GEM-object pointer before calling drm_framebuffer_cleanup(). Remove this code to make gma500 consistent with the rest of the drivers. The change is cosmetic, as drm_framebuffer_cleanup() does not touch the object pointer on gma500. Signed-off-by: Thom