Re: [PATCH v2 2/2] drm: Make fbdev emulation select FB_CORE instead of depends on FB

2023-07-02 Thread Javier Martinez Canillas
Geert Uytterhoeven writes: > Hi Arnd, > > On Sun, Jul 2, 2023 at 12:07 AM Arnd Bergmann wrote: >> On Sat, Jul 1, 2023, at 23:44, Javier Martinez Canillas wrote: >> > Now that the fbdev core has been split in FB_CORE and FB, make DRM fbdev >> > emulation layer to just select the former. >> > >>

Re: [PATCH v2 2/2] drm: Make fbdev emulation select FB_CORE instead of depends on FB

2023-07-02 Thread Geert Uytterhoeven
Hi Arnd, On Sun, Jul 2, 2023 at 12:07 AM Arnd Bergmann wrote: > On Sat, Jul 1, 2023, at 23:44, Javier Martinez Canillas wrote: > > Now that the fbdev core has been split in FB_CORE and FB, make DRM fbdev > > emulation layer to just select the former. > > > > This allows to disable the CONFIG_FB

Re: [PATCH v2 2/2] drm: Make fbdev emulation select FB_CORE instead of depends on FB

2023-07-01 Thread Arnd Bergmann
On Sat, Jul 1, 2023, at 23:44, Javier Martinez Canillas wrote: > Now that the fbdev core has been split in FB_CORE and FB, make DRM fbdev > emulation layer to just select the former. > > This allows to disable the CONFIG_FB option if is not needed, which will > avoid the need to explicitly disable

[PATCH v2 2/2] drm: Make fbdev emulation select FB_CORE instead of depends on FB

2023-07-01 Thread Javier Martinez Canillas
Now that the fbdev core has been split in FB_CORE and FB, make DRM fbdev emulation layer to just select the former. This allows to disable the CONFIG_FB option if is not needed, which will avoid the need to explicitly disable each of the legacy fbdev drivers. Signed-off-by: Javier Martinez