Re: [PATCH v2 1/2] drm/aperture: Move conflicting fbdev frame buffer removal to a helper

2021-11-02 Thread Thomas Zimmermann
Am 25.10.21 um 09:57 schrieb Javier Martinez Canillas: The logic to remove the conflicting frame buffers for fbdev devices that use a given memory range is only compiled if CONFIG_FB option is enabled. But having an ifdefery in drm_aperture_remove_conflicting_framebuffers() makes the function

[PATCH v2 1/2] drm/aperture: Move conflicting fbdev frame buffer removal to a helper

2021-10-25 Thread Javier Martinez Canillas
The logic to remove the conflicting frame buffers for fbdev devices that use a given memory range is only compiled if CONFIG_FB option is enabled. But having an ifdefery in drm_aperture_remove_conflicting_framebuffers() makes the function harder to extend. Move the logic into its own helper. Sugg