<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>f604819d9cc9532f88bb4cbd76e7227532ce5abb - drm/mxsfb/lcdif: use DRM_BRIDGE_ATTACH_NO_CONNECTOR and the bridge-connector</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#f604819d9cc9532f88bb4cbd76e7227532ce5abb</link>
        <description>drm/mxsfb/lcdif: use DRM_BRIDGE_ATTACH_NO_CONNECTOR and the bridge-connectorConvert this driver to DRM_BRIDGE_ATTACH_NO_CONNECTOR and to thedrm_bridge_connector framework which is the current DRM bridge bestpractice.Based on the in-tree dts[i] files this introduces no regression. Based onthe kernel doc of drm_bridge_connector.c: * To make use of this helper, all bridges in the chain shall report bridge * operation flags (&amp;drm_bridge-&gt;ops) and bridge output type * (&amp;drm_bridge-&gt;type), as well as the DRM_BRIDGE_ATTACH_NO_CONNECTOR attach * flag (none of the bridges shall create a DRM connector directly).and each of the 3 LCDIF blocks in the i.MX8MP, all of them comply with theabove requirement: * For the LCDIF3, the pipeline is:   LCDIF3 -&gt; fsl,imx8mp-hdmi-pvi -&gt; fsl,imx8mp-hdmi-tx -&gt; HDMI connector   And the involved bridges are:   * fsl,imx8mp-hdmi-pvi has ops = 0 (it doesn&apos;t set it) because it     implements none the optional features mentioned by those flags, and it     honors the DRM_BRIDGE_ATTACH_NO_CONNECTOR by propagating it   * fsl,imx8mp-hdmi-tx is implemented based on dw-hdmi, which sets ops as     appropriate and also propagates the DRM_BRIDGE_ATTACH_NO_CONNECTOR flag   * display-connector (enabled via the DT overlay if needed) sets ops and     makes DRM_BRIDGE_ATTACH_NO_CONNECTOR mandatory * The LCDIF2 involves the panel-bridge, display-connector and lvds-decoder   (even though only the pane-bridge is currently supported), and all these   three also set ops as needed and propagate   DRM_BRIDGE_ATTACH_NO_CONNECTOR or make it mandatory. * The LCDIF1 is used with the adv7511, tc358767 and the panel bridge   drivers which also comply with the requirements.Tested-by: Martyn Welch &lt;martyn.welch@collabora.com&gt;Tested-by: Alexander Stein &lt;alexander.stein@ew.tq-group.com&gt; # TQMa8MPxL/MBa8MPxLReviewed-by: Liu Ying &lt;victor.liu@nxp.com&gt;Link: https://patch.msgid.link/20260407-drm-lcdif-dbanc-v4-11-247a16e61ef9@bootlin.comSigned-off-by: Luca Ceresoli &lt;luca.ceresoli@bootlin.com&gt;

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Tue, 07 Apr 2026 14:24:25 +0200</pubDate>
        <dc:creator>Luca Ceresoli &lt;luca.ceresoli@bootlin.com&gt;</dc:creator>
    </item>
<item>
        <title>1dacbdb159a15fdf0fc299e8f7aefa77e15bcf77 - drm/mxsfb: Run DRM default client setup</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#1dacbdb159a15fdf0fc299e8f7aefa77e15bcf77</link>
        <description>drm/mxsfb: Run DRM default client setupCall drm_client_setup() to run the kernel&apos;s default client setupfor DRM. Set fbdev_probe in struct drm_driver, so that the clientsetup can start the common fbdev client.The mxsfb driver specifies a preferred color mode of 32. As thisis the default if no format has been given, leave it out entirely.v5:- select DRM_CLIENT_SELECTIONv3:- fix driver name &quot;msxfb&quot; to &quot;mxsfb&quot;Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Cc: Marek Vasut &lt;marex@denx.de&gt;Cc: Stefan Agner &lt;stefan@agner.ch&gt;Cc: Shawn Guo &lt;shawnguo@kernel.org&gt;Cc: Sascha Hauer &lt;s.hauer@pengutronix.de&gt;Cc: Pengutronix Kernel Team &lt;kernel@pengutronix.de&gt;Cc: Fabio Estevam &lt;festevam@gmail.com&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-31-tzimmermann@suse.de

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 09:12:28 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>04d131d83c73388a1b62232e1f0ebace69d4dbc8 - drm/mxsfb/lcdif: Run DRM default client setup</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#04d131d83c73388a1b62232e1f0ebace69d4dbc8</link>
        <description>drm/mxsfb/lcdif: Run DRM default client setupCall drm_client_setup() to run the kernel&apos;s default client setupfor DRM. Set fbdev_probe in struct drm_driver, so that the clientsetup can start the common fbdev client.The lcdif driver specifies a preferred color mode of 32. As thisis the default if no format has been given, leave it out entirely.v5:- select DRM_CLIENT_SELECTIONSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Cc: Marek Vasut &lt;marex@denx.de&gt;Cc: Stefan Agner &lt;stefan@agner.ch&gt;Cc: Shawn Guo &lt;shawnguo@kernel.org&gt;Cc: Sascha Hauer &lt;s.hauer@pengutronix.de&gt;Cc: Pengutronix Kernel Team &lt;kernel@pengutronix.de&gt;Cc: Fabio Estevam &lt;festevam@gmail.com&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-30-tzimmermann@suse.de

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 09:12:27 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>7783cc67862f9166c901bfa0f80b717aa8d354dd - drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#7783cc67862f9166c901bfa0f80b717aa8d354dd</link>
        <description>drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXCFreescale/NXP i.MX LCDIF and eLCDIF LCD controllers are only present onFreescale/NXP i.MX SoCs.  Hence add a dependency on ARCH_MXS ||ARCH_MXC, to prevent asking the user about this driver when configuringa kernel without Freescale/NXP i.MX support.Fixes: 45d59d704080cc0c (&quot;drm: Add new driver for MXSFB controller&quot;)Signed-off-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Reviewed-by: Marek Vasut &lt;marex@denx.de&gt;Signed-off-by: Marek Vasut &lt;marex@denx.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/98e74779ca2bc575d91afff03369e86b080c01ac.1669046358.git.geert+renesas@glider.be

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Mon, 21 Nov 2022 16:59:55 +0100</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;</dc:creator>
    </item>
<item>
        <title>10ef5f2992006720318b9886961820155b3750fd - drm: mxsfb: DRM_IMX_LCDIF should depend on ARCH_MXC</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#10ef5f2992006720318b9886961820155b3750fd</link>
        <description>drm: mxsfb: DRM_IMX_LCDIF should depend on ARCH_MXCThe Freescale/NXP i.MX LCDIFv3 LCD controller is only present onFreescale/NXP i.MX SoCs.  Hence add a dependency on ARCH_MXC, to preventasking the user about this driver when configuring a kernel withoutFreescale/NXP i.MX support.Fixes: 9db35bb349a0ef32 (&quot;drm: lcdif: Add support for i.MX8MP LCDIF variant&quot;)Signed-off-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Reviewed-by: Marek Vasut &lt;marex@denx.de&gt;Signed-off-by: Marek Vasut &lt;marex@denx.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/6103c1aa65a7888c12d351ae63f29850f29f42b9.1669046403.git.geert+renesas@glider.be

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Mon, 21 Nov 2022 17:00:48 +0100</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;</dc:creator>
    </item>
<item>
        <title>4a83c26a1d8702c516db77fc4423ae896ee904f1 - drm/gem: rename GEM CMA helpers to GEM DMA helpers</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#4a83c26a1d8702c516db77fc4423ae896ee904f1</link>
        <description>drm/gem: rename GEM CMA helpers to GEM DMA helpersRename &quot;GEM CMA&quot; helpers to &quot;GEM DMA&quot; helpers - considering thehierarchy of APIs (mm/cma -&gt; dma -&gt; gem dma) calling them &quot;GEMDMA&quot; seems to be more applicable.Besides that, commit e57924d4ae80 (&quot;drm/doc: Task to rename CMA helpers&quot;)requests to rename the CMA helpers and implies that people seem to beconfused about the naming.In order to do this renaming the following script was used:```	#!/bin/bash	DIRS=&quot;drivers/gpu include/drm Documentation/gpu&quot;	REGEX_SYM_UPPER=&quot;[0-9A-Z_\-]&quot;	REGEX_SYM_LOWER=&quot;[0-9a-z_\-]&quot;	REGEX_GREP_UPPER=&quot;(${REGEX_SYM_UPPER}*)(GEM)_CMA_(${REGEX_SYM_UPPER}*)&quot;	REGEX_GREP_LOWER=&quot;(${REGEX_SYM_LOWER}*)(gem)_cma_(${REGEX_SYM_LOWER}*)&quot;	REGEX_SED_UPPER=&quot;s/${REGEX_GREP_UPPER}/\1\2_DMA_\3/g&quot;	REGEX_SED_LOWER=&quot;s/${REGEX_GREP_LOWER}/\1\2_dma_\3/g&quot;	# Find all upper case &apos;CMA&apos; symbols and replace them with &apos;DMA&apos;.	for ff in $(grep -REHl &quot;${REGEX_GREP_UPPER}&quot; $DIRS)	do	       sed -i -E &quot;$REGEX_SED_UPPER&quot; $ff	done	# Find all lower case &apos;cma&apos; symbols and replace them with &apos;dma&apos;.	for ff in $(grep -REHl &quot;${REGEX_GREP_LOWER}&quot; $DIRS)	do	       sed -i -E &quot;$REGEX_SED_LOWER&quot; $ff	done	# Replace all occurrences of &apos;CMA&apos; / &apos;cma&apos; in comments and	# documentation files with &apos;DMA&apos; / &apos;dma&apos;.	for ff in $(grep -RiHl &quot; cma &quot; $DIRS)	do		sed -i -E &quot;s/ cma / dma /g&quot; $ff		sed -i -E &quot;s/ CMA / DMA /g&quot; $ff	done	# Rename all &apos;cma_obj&apos;s to &apos;dma_obj&apos;.	for ff in $(grep -RiHl &quot;cma_obj&quot; $DIRS)	do		sed -i -E &quot;s/cma_obj/dma_obj/g&quot; $ff	done```Only a few more manual modifications were needed, e.g. reverting thefollowing modifications in some DRM Kconfig files    -       select CMA if HAVE_DMA_CONTIGUOUS    +       select DMA if HAVE_DMA_CONTIGUOUSas well as manually picking the occurrences of &apos;CMA&apos;/&apos;cma&apos; in comments anddocumentation which relate to &quot;GEM CMA&quot;, but not &quot;FB CMA&quot;.Also drivers/gpu/drm/Makefile was fixed up manually after renamingdrm_gem_cma_helper.c to drm_gem_dma_helper.c.This patch is compile-time tested building a x86_64 kernel with`make allyesconfig &amp;&amp; make drivers/gpu/drm`.Acked-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;Acked-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Danilo Krummrich &lt;dakr@redhat.com&gt;Reviewed-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt; #drivers/gpu/drm/armSigned-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20220802000405.949236-4-dakr@redhat.com

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Tue, 02 Aug 2022 02:04:03 +0200</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>9db35bb349a0ef32184ab68f79cc36026be4585d - drm: lcdif: Add support for i.MX8MP LCDIF variant</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#9db35bb349a0ef32184ab68f79cc36026be4585d</link>
        <description>drm: lcdif: Add support for i.MX8MP LCDIF variantAdd support for i.MX8MP LCDIF variant. This is called LCDIFv3 and iscompletely different from the LCDIFv3 found in i.MX23 in that it hasa completely scrambled register layout compared to all previous LCDIFvariants. The new LCDIFv3 also supports 36bit address space.Add a separate driver which is really a fork of MXSFB driver with thei.MX8MP LCDIF variant handling filled in.Tested-by: Alexander Stein &lt;alexander.stein@ew.tq-group.com&gt;Tested-by: Martyn Welch &lt;martyn.welch@collabora.com&gt;Signed-off-by: Marek Vasut &lt;marex@denx.de&gt;Cc: Alexander Stein &lt;alexander.stein@ew.tq-group.com&gt;Cc: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Cc: Lucas Stach &lt;l.stach@pengutronix.de&gt;Cc: Peng Fan &lt;peng.fan@nxp.com&gt;Cc: Robby Cai &lt;robby.cai@nxp.com&gt;Cc: Sam Ravnborg &lt;sam@ravnborg.org&gt;Cc: Stefan Agner &lt;stefan@agner.ch&gt;Reviewed-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20220628174152.167284-2-marex@denx.de

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Tue, 28 Jun 2022 19:41:52 +0200</pubDate>
        <dc:creator>Marek Vasut &lt;marex@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>09717af7d13d63df141ae6e71686289989d17efd - drm: Remove CONFIG_DRM_KMS_CMA_HELPER option</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#09717af7d13d63df141ae6e71686289989d17efd</link>
        <description>drm: Remove CONFIG_DRM_KMS_CMA_HELPER optionLink drm_fb_cma_helper.o into drm_cma_helper.ko if CONFIG_DRM_KMS_HELPERhas been set. Remove CONFIG_DRM_KMS_CMA_HELPER config option. SelectingKMS helpers and CMA will now automatically enable CMA KMS helpers.Some drivers&apos; Kconfig files did not correctly select KMS or CMA helpers.Fix this as part of the change.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/20211106193509.17472-3-tzimmermann@suse.de

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Sat, 06 Nov 2021 20:35:09 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>13b29cc3a722c2c0bc9ab9f72f9047d55d08a2f9 - drm/mxsfb: Don&apos;t select DRM_KMS_FB_HELPER</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#13b29cc3a722c2c0bc9ab9f72f9047d55d08a2f9</link>
        <description>drm/mxsfb: Don&apos;t select DRM_KMS_FB_HELPERSelecting DRM_FBDEV_EMULATION will include the correct settings forfbdev emulation. Drivers should not override this.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Acked-by: Stefan Agner &lt;stefan@agner.ch&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20210415110040.23525-3-tzimmermann@suse.de

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Thu, 15 Apr 2021 13:00:38 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b13aeb9e212dbeb051d093201085a4935d348463 - drm: mxsfb: Add i.MX7 and i.MX8M to the list of supported SoCs in Kconfig</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#b13aeb9e212dbeb051d093201085a4935d348463</link>
        <description>drm: mxsfb: Add i.MX7 and i.MX8M to the list of supported SoCs in KconfigExtend the Kconfig option description by listing the i.MX7 and i.MX8MSoCs, as they are supported by the same driver. Replace the list of SoCsin the short description with just &quot;(e)LCDIF LCD controller&quot; to avoidexpanding it further in the future as support for more SoCs is added.Signed-off-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Reviewed-by: Emil Velikov &lt;emil.l.velikov@gmail.com&gt;Reviewed-by: Stefan Agner &lt;stefan@agner.ch&gt;Signed-off-by: Stefan Agner &lt;stefan@agner.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20200727020654.8231-17-laurent.pinchart@ideasonboard.com

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Mon, 27 Jul 2020 04:06:48 +0200</pubDate>
        <dc:creator>Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;</dc:creator>
    </item>
<item>
        <title>c42001e357f7de11e882f54461be27757a7fe51a - drm: mxsfb: Use drm_panel_bridge</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#c42001e357f7de11e882f54461be27757a7fe51a</link>
        <description>drm: mxsfb: Use drm_panel_bridgeReplace the manual connector implementation based on drm_panel with thedrm_panel_bridge helper. This simplifies the mxsfb driver by removingconnector-related code, and standardizing all pipeline controloperations on bridges.A hack is needed to get hold of the connector, as that&apos;s our only sourceof bus flags and formats for now. As soon as the bridge API provides uswith that information this can be fixed.Signed-off-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Reviewed-by: Emil Velikov &lt;emil.l.velikov@gmail.com&gt;Reviewed-by: Stefan Agner &lt;stefan@agner.ch&gt;Signed-off-by: Stefan Agner &lt;stefan@agner.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20200727020654.8231-3-laurent.pinchart@ideasonboard.com

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Mon, 27 Jul 2020 04:06:34 +0200</pubDate>
        <dc:creator>Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7faaf3d4799a7c3f4c1b87f6b02778ad1 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#ec8f24b7faaf3d4799a7c3f4c1b87f6b02778ad1</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/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Sun, 19 May 2019 14:07:45 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>8166255704edea288bb116375b3c2a47af2fe28c - drm: mxsfb: Select DRM_PANEL</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#8166255704edea288bb116375b3c2a47af2fe28c</link>
        <description>drm: mxsfb: Select DRM_PANELSelect DRM_PANEL, since the MXSFB driver depends on it. Otherwise,we get the following error when compiling:drivers/built-in.o: In function `mxsfb_probe&apos;:core.c:(.text+0x9ce9c): undefined reference to `drm_panel_attach&apos;core.c:(.text+0x9cff0): undefined reference to `drm_panel_detach&apos;drivers/built-in.o: In function `mxsfb_panel_connector_destroy&apos;:core.c:(.text+0x9d614): undefined reference to `drm_panel_detach&apos;drivers/built-in.o: In function `mxsfb_create_output&apos;:core.c:(.text+0x9d68c): undefined reference to `of_drm_find_panel&apos;make: *** [Makefile:962: vmlinux] Error 1Signed-off-by: Marek Vasut &lt;marex@denx.de&gt;Cc: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Cc: Dave Airlie &lt;airlied@redhat.com&gt;Reported-by: Stefan Agner &lt;stefan@agner.ch&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Wed, 07 Dec 2016 22:23:29 +0100</pubDate>
        <dc:creator>Marek Vasut &lt;marex@denx.de&gt;</dc:creator>
    </item>
<item>
        <title>45d59d704080cc0c914b7cff24ccf19f12b9ce23 - drm: Add new driver for MXSFB controller</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/mxsfb/Kconfig#45d59d704080cc0c914b7cff24ccf19f12b9ce23</link>
        <description>drm: Add new driver for MXSFB controllerAdd new driver for the MXSFB controller found in i.MX23/28/6SX .The MXSFB controller is a simple framebuffer controller with oneparallel LCD output. Unlike the MXSFB fbdev driver that is usedon these systems now, this driver uses the DRM/KMS framework.Signed-off-by: Marek Vasut &lt;marex@denx.de&gt;Cc: Lucas Stach &lt;l.stach@pengutronix.de&gt;Cc: Fabio Estevam &lt;fabio.estevam@nxp.com&gt;Cc: Shawn Guo &lt;shawnguo@kernel.org&gt;

            List of files:
            /linux/drivers/gpu/drm/mxsfb/Kconfig</description>
        <pubDate>Thu, 18 Aug 2016 20:23:01 +0200</pubDate>
        <dc:creator>Marek Vasut &lt;marex@denx.de&gt;</dc:creator>
    </item>
</channel>
</rss>
