<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>54e6baf1 - gpu: nova-core: add initial driver stub</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#54e6baf1</link>
        <description>gpu: nova-core: add initial driver stubAdd the initial nova-core driver stub.nova-core is intended to serve as a common base for nova-drm (thecorresponding DRM driver) and the vGPU manager VFIO driver, serving as ahard- and firmware abstraction layer for GSP-based NVIDIA GPUs.The Nova project, including nova-core and nova-drm, in the long term,is intended to serve as the successor of Nouveau for all GSP-based GPUs.The motivation for both, starting a successor project for Nouveau anddoing so using the Rust programming language, is documented in detailthrough a previous post on the mailing list [1], an LWN article [2] and atalk from LPC &apos;24.In order to avoid the chicken and egg problem to require a user toupstream Rust abstractions, but at the same time require the Rustabstractions to implement the driver, nova-core kicks off as a driverstub and is subsequently developed upstream.Link: https://lore.kernel.org/dri-devel/Zfsj0_tb-0-tNrJy@cassiopeiae/T/#u [1]Link: https://lwn.net/Articles/990736/ [2]Link: https://youtu.be/3Igmx28B3BQ?si=sBdSEer4tAPKGpOs [3]Reviewed-by: Alexandre Courbot &lt;acourbot@nvidia.com&gt;Link: https://lore.kernel.org/r/20250306222336.23482-5-dakr@kernel.orgSigned-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 06 Mar 2025 22:23:30 +0000</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>75fa9b7e - video: Add helpers for decoding screen_info</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#75fa9b7e</link>
        <description>video: Add helpers for decoding screen_infoThe plain values as stored in struct screen_info need to be decodedbefore being used. Add helpers that decode the type of video outputand the framebuffer I/O aperture.Old or non-x86 systems may not set the type of video directly, butonly indicate the presence by storing 0x01 in orig_video_isVGA. Thedecoding logic in screen_info_video_type() takes this into account.It then follows similar code in vgacon&apos;s vgacon_startup() to detectthe video type from the given values.A call to screen_info_resources() returns all known resources of thegiven screen_info. The resources&apos; values have been taken from existingcode in vgacon and vga16fb. These drivers can later be converted touse the new interfaces.v2:	* return ssize_t from screen_info_resources()	* don&apos;t call __screen_info_has_lfb() unnecessarilySigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240212090736.11464-2-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Mon, 12 Feb 2024 09:06:09 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>71fc3249 - video/nomodeset: Select nomodeset= parameter with CONFIG_VIDEO</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#71fc3249</link>
        <description>video/nomodeset: Select nomodeset= parameter with CONFIG_VIDEOEnable support for nomodeset= parameter via CONFIG_VIDEO. Both,DRM and fbdev, already select this option. Remove the existingoption CONFIG_VIDEO_NOMODESET. Simplifies the Kconfig rules.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240118090721.7995-4-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 18 Jan 2024 09:05:28 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>a3b6792e - video/cmdline: Introduce CONFIG_VIDEO for video= parameter</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#a3b6792e</link>
        <description>video/cmdline: Introduce CONFIG_VIDEO for video= parameterAdd CONFIG_VIDEO for common code in drivers/video/. Use the option toselect helpers for the video= parameter. Replaces CONFIG_VIDEO_CMDLINE.Other common code in drivers/video/ can be moved behind CONFIG_VIDEO,which will simplify the Kconfig rules.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240118090721.7995-2-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 18 Jan 2024 09:05:26 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>701a9b9d - video: logo: LOGO should depend on FB_CORE i.s.o. FB</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#701a9b9d</link>
        <description>video: logo: LOGO should depend on FB_CORE i.s.o. FBIf CONFIG_FB_CORE=y and CONFIG_FB=n, the frame buffer bootup logos canno longer be enabled.  Fix this by making CONFIG_LOGO depend onCONFIG_FB_CORE instead of CONFIG_FB, as there is no good reason for thelogo code to depend on the presence of real frame buffer device drivers.Fixes: 55bffc8170bb (&quot;fbdev: Split frame buffer support in FB and FB_CORE symbols&quot;)Signed-off-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Signed-off-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/e4142b7cc9aad9975de1bc6b1c7d86ccee487e4c.1690535997.git.geert+renesas@glider.be

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Fri, 28 Jul 2023 09:21:11 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;</dc:creator>
    </item>
<item>
        <title>c0191dd6 - video: Add auxiliary display drivers to Graphics support menu</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#c0191dd6</link>
        <description>video: Add auxiliary display drivers to Graphics support menuThe drivers in this subsystem are for either character-based or monochromeLCD controllers. Which can fall into the same category of the DRM/KMS andfbdev drivers, that are located under the &quot;Graphics support&quot; menu.Add the auxdisplay drivers there as well to have all display drivers underthe same menu.Suggested-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Signed-off-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Reviewed-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Tested-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Acked-by: Helge Deller &lt;deller@gmx.de&gt;Acked-by: Miguel Ojeda &lt;ojeda@kernel.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230719081544.741051-2-javierm@redhat.com

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Wed, 19 Jul 2023 08:15:35 +0000</pubDate>
        <dc:creator>Javier Martinez Canillas &lt;javierm@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>74708497 - video: Move HP PARISC STI core code to shared location</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#74708497</link>
        <description>video: Move HP PARISC STI core code to shared locationSTI core files have been located in console and fbdev code. Movethe source code and header to the directories for video helpers.Also update the config and build rules such that the code dependson the config symbol CONFIG_STI_CORE, which STI console and STIframebuffer select automatically.Cleans up the console makefile and prepares PARISC to implementfb_is_primary_device() within the arch/ directory. No functionalchanges.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Acked-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Acked-by: Helge Deller &lt;deller@gmx.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230417125651.25126-12-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Mon, 17 Apr 2023 12:56:43 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>93604a5a - fbdev: Handle video= parameter in video/cmdline.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#93604a5a</link>
        <description>fbdev: Handle video= parameter in video/cmdline.cHandle the command-line parameter video= in video/cmdline.c. Implementthe fbdev helper fb_get_options() on top. Will allows to handle thekernel parameter in DRM without fbdev dependencies.Note that __video_get_options() has the meaning of its return valueinverted compared to fb_get_options(). The new helper returns true ifthe adapter has been enabled, and false otherwise.There is the ofonly parameter, which disables output for non-OF-basedframebuffers. It is only for offb and looks like a workaround. The actualpurpose it not clear to me. Use &apos;video=off&apos; or &apos;nomodeset&apos; instead.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230209135509.7786-9-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 09 Feb 2023 13:55:06 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9a758d87 - drm: Move nomodeset kernel parameter to drivers/video</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#9a758d87</link>
        <description>drm: Move nomodeset kernel parameter to drivers/videoMove the nomodeset kernel parameter to drivers/video to make itavailable to non-DRM drivers. Adapt the interface, but keep the DRMinterface drm_firmware_drivers_only() to avoid churn within DRM. Thefunction should later be inlined into callers.The parameter disables any DRM graphics driver that would replace adriver for firmware-provided scanout buffers. It is an option to easilyfallback to basic graphics output if the hardware&apos;s native driver isbroken. Moving it to a more prominent location wil make it availableto fbdev as well.v2:	* clarify the meaning of the nomodeset parameter (Javier)Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20221111133024.9897-2-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Fri, 11 Nov 2022 13:30:23 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>7283f862 - drm: Implement DRM aperture helpers under video/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#7283f862</link>
        <description>drm: Implement DRM aperture helpers under video/Implement DRM&apos;s aperture helpers under video/ for sharing with othersub-systems. Remove DRM-isms from the interface. The helpers trackthe ownership of framebuffer apertures and provide hand-over fromfirmware, such as EFI and VESA, to native graphics drivers.Other subsystems, such as fbdev and vfio, also have to maintain ownershipof framebuffer apertures. Moving DRM&apos;s aperture helpers to a more publiclocation allows all subsystems to interact with each other and share acommon implementation.The aperture helpers are selected by the various firmware drivers withinDRM and fbdev, and the VGA text-console driver.The original DRM interface is kept in place for use by DRM drivers.v3:	* prefix all interfaces with aperture_ (Javier)	* rework and simplify documentation (Javier)	* rename struct dev_aperture to struct aperture_range	* rebase onto latest DRM	* update MAINTAINERS entrySigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Tested-by: Laszlo Ersek &lt;lersek@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20220622140134.12763-3-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Wed, 22 Jun 2022 14:01:33 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>0a3994f9 - Kconfig : Remove HAS_IOMEM dependency for Graphics support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#0a3994f9</link>
        <description>Kconfig : Remove HAS_IOMEM dependency for Graphics supportThe &apos;commit e25df1205f37 (&quot;[S390] Kconfig: menus with depends on HAS_IOMEM.&quot;)&apos;added the HAS_IOMEM dependecy for &quot;Graphics support&quot;. This disabled the&quot;Graphics support&quot; menu for S390. But if we enable VT layer for S390,we would also need to enable the dummy console. So let&apos;s remove theHAS_IOMEM dependency.Move this dependency to sub menu items and console drivers that useio memory.Signed-off-by: Farhan Ali &lt;alifm@linux.vnet.ibm.com&gt;Reviewed-by: Thomas Huth &lt;thuth@redhat.com&gt;Message-Id: &lt;6e8ef238162df5be4462126be155975c722e9863.1519315352.git.alifm@linux.vnet.ibm.com&gt;Acked-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Signed-off-by: Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 22 Feb 2018 16:22:22 +0000</pubDate>
        <dc:creator>Farhan Ali &lt;alifm@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>5c420fcb - Kconfig: Remove HAS_IOMEM dependency for Graphics support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#5c420fcb</link>
        <description>Kconfig: Remove HAS_IOMEM dependency for Graphics supportThe &apos;commit e25df1205f37 (&quot;[S390] Kconfig: menus with depends on HAS_IOMEM.&quot;)&apos;added the HAS_IOMEM dependecy for &quot;Graphics support&quot;. This disabled the&quot;Graphics support&quot; menu for S390. But if we enable VT layer for S390,we would also need to enable the dummy console. So let&apos;s remove theHAS_IOMEM dependency.Move this dependency to sub menu items and console drivers that useio memory.Signed-off-by: Farhan Ali &lt;alifm@linux.vnet.ibm.com&gt;Reviewed-by: Thomas Huth &lt;thuth@redhat.com&gt;Message-Id: &lt;6e8ef238162df5be4462126be155975c722e9863.1519315352.git.alifm@linux.vnet.ibm.com&gt;Acked-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 22 Feb 2018 16:22:22 +0000</pubDate>
        <dc:creator>Farhan Ali &lt;alifm@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>1aa9b8ad - video: remove unused kconfig SH_LCD_MIPI_DSI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#1aa9b8ad</link>
        <description>video: remove unused kconfig SH_LCD_MIPI_DSISH_LCD_MIPI_DSI is unused since commit 18b6562c243f (&quot;fbdev: sh_mipi_dsi:remove driver&quot;) so no need to keep it.Fixes: 18b6562c243f (&quot;fbdev: sh_mipi_dsi: remove driver&quot;)Signed-off-by: Corentin Labbe &lt;clabbe.montjoie@gmail.com&gt;Signed-off-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Mon, 12 Mar 2018 16:06:52 +0000</pubDate>
        <dc:creator>Corentin Labbe &lt;clabbe.montjoie@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>18b6562c - fbdev: sh_mipi_dsi: remove driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#18b6562c</link>
        <description>fbdev: sh_mipi_dsi: remove driverRemove the sh_mipi_dsi driver as it appears to be unused sincec0bb9b302769 (&quot;ARCH: ARM: shmobile: Remove ag5evm board support&quot;).Signed-off-by: Simon Horman &lt;horms+renesas@verge.net.au&gt;Signed-off-by: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Mon, 04 Apr 2016 01:48:04 +0000</pubDate>
        <dc:creator>Simon Horman &lt;horms+renesas@verge.net.au&gt;</dc:creator>
    </item>
<item>
        <title>0630db4f - drm: Remove two-level menu in Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#0630db4f</link>
        <description>drm: Remove two-level menu in KconfigThe Direct Rendering Manager Kconfig option is already a separate menu,so remove the extra level to make it easier to navigate.Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Fri, 07 Aug 2015 16:10:17 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>39b9004d - gpu: ipu-v3: Move i.MX IPUv3 core driver out of staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#39b9004d</link>
        <description>gpu: ipu-v3: Move i.MX IPUv3 core driver out of stagingThe i.MX Image Processing Unit (IPU) contains a number of image processingblocks that sit right in the middle between DRM and V4L2. Some of the modules,such as Display Controller, Processor, and Interface (DC, DP, DI) or CMOSSensor Interface (CSI) and their FIFOs could be assigned to either framework,but others, such as the dma controller (IDMAC) and image converter (IC) canbe used by both.The IPUv3 core driver provides an internal API to access the modules, to beused by both DRM and V4L2 IPUv3 drivers.Signed-off-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Mon, 30 Sep 2013 14:13:39 +0000</pubDate>
        <dc:creator>Philipp Zabel &lt;p.zabel@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>776bbb97 - video: Kconfig: move drm and fb into separate menus</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#776bbb97</link>
        <description>video: Kconfig: move drm and fb into separate menusAt the moment the &quot;Device Drivers / Graphics support&quot; kernel config pagelooks rather messy, with DRM and fbdev driver selections on the samepage, some on the top level Graphics support page, some under theirrespective subsystems.If I&apos;m not mistaken, this is caused by the drivers depending on otherthings than DRM or FB, which causes Kconfig to arrange the options innot-so-neat manner.Both DRM and FB have a main menuconfig option for the whole DRM or FBsubsystem. Optimally, this would be enough to arrange all DRM and FBoptions under the respective subsystem, but for whatever reason thisdoesn&apos;t work reliably.This patch adds an explicit submenu for DRM and FB, making it muchclearer which options are related to FB, and which to DRM.Signed-off-by: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;Acked-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Acked-by: Rob Clark &lt;robdclark@gmail.com&gt;Reviewed-by: Jingoo Han &lt;jg1.han@samsung.com&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 13 Feb 2014 14:32:13 +0000</pubDate>
        <dc:creator>Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>f7018c21 - video: move fbdev to drivers/video/fbdev</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#f7018c21</link>
        <description>video: move fbdev to drivers/video/fbdevThe drivers/video directory is a mess. It contains generic video relatedfiles, directories for backlight, console, linux logo, lots of fbdevdevice drivers, fbdev framework files.Make some order into the chaos by creating drivers/video/fbdevdirectory, and move all fbdev related files there.No functionality is changed, although I guess it is possible that somesubtle Makefile build order related issue could be created by thispatch.Signed-off-by: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;Acked-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Acked-by: Rob Clark &lt;robdclark@gmail.com&gt;Acked-by: Jingoo Han &lt;jg1.han@samsung.com&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 13 Feb 2014 13:31:38 +0000</pubDate>
        <dc:creator>Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>25e475e1 - video: imxfb: Select LCD_CLASS_DEVICE unconditionally</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/video/Kconfig#25e475e1</link>
        <description>video: imxfb: Select LCD_CLASS_DEVICE unconditionallyFB driver uses lowlevel controls for LCD powering and contrast changing.Since LCD class cannot be used as an optional feature and should becompiled for using in the driver, this patch selects LCD_CLASS_DEVICEsymbol for the driver.Signed-off-by: Alexander Shiyan &lt;shc_work@mail.ru&gt;Signed-off-by: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;

            List of files:
            /linux-6.15/drivers/video/Kconfig</description>
        <pubDate>Thu, 20 Mar 2014 06:58:31 +0000</pubDate>
        <dc:creator>Alexander Shiyan &lt;shc_work@mail.ru&gt;</dc:creator>
    </item>
</channel>
</rss>
