Message ID | 1392376711-11290-3-git-send-email-tomi.valkeinen@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Friday, February 14, 2014 8:19 PM, Tomi Valkeinen wrote: > > At the moment the "Device Drivers / Graphics support" kernel config page > looks rather messy, with DRM and fbdev driver selections on the same > page, some on the top level Graphics support page, some under their > respective subsystems. > > If I'm not mistaken, this is caused by the drivers depending on other > things than DRM or FB, which causes Kconfig to arrange the options in > not-so-neat manner. > > Both DRM and FB have a main menuconfig option for the whole DRM or FB > subsystem. Optimally, this would be enough to arrange all DRM and FB > options under the respective subsystem, but for whatever reason this > doesn't work reliably. > > This patch adds an explicit submenu for DRM and FB, making it much > clearer which options are related to FB, and which to DRM. > > Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Reviewed-by: Jingoo Han <jg1.han@samsung.com> I tested this patch. Menu becomes clearer! Thanks. Best regards, Jingoo Han > --- > drivers/video/Kconfig | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig > index f0f26a0b746e..70d174090a54 100644 > --- a/drivers/video/Kconfig > +++ b/drivers/video/Kconfig > @@ -21,9 +21,13 @@ source "drivers/gpu/vga/Kconfig" > > source "drivers/gpu/host1x/Kconfig" > > +menu "Direct Rendering Manager" > source "drivers/gpu/drm/Kconfig" > +endmenu > > +menu "Framebuffer Devices" > source "drivers/video/fbdev/Kconfig" > +endmenu > > source "drivers/video/backlight/Kconfig" > > -- > 1.8.3.2
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index f0f26a0b746e..70d174090a54 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -21,9 +21,13 @@ source "drivers/gpu/vga/Kconfig" source "drivers/gpu/host1x/Kconfig" +menu "Direct Rendering Manager" source "drivers/gpu/drm/Kconfig" +endmenu +menu "Framebuffer Devices" source "drivers/video/fbdev/Kconfig" +endmenu source "drivers/video/backlight/Kconfig"
At the moment the "Device Drivers / Graphics support" kernel config page looks rather messy, with DRM and fbdev driver selections on the same page, some on the top level Graphics support page, some under their respective subsystems. If I'm not mistaken, this is caused by the drivers depending on other things than DRM or FB, which causes Kconfig to arrange the options in not-so-neat manner. Both DRM and FB have a main menuconfig option for the whole DRM or FB subsystem. Optimally, this would be enough to arrange all DRM and FB options under the respective subsystem, but for whatever reason this doesn't work reliably. This patch adds an explicit submenu for DRM and FB, making it much clearer which options are related to FB, and which to DRM. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> --- drivers/video/Kconfig | 4 ++++ 1 file changed, 4 insertions(+)