<?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>df467da5 - drm/sti: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#df467da5</link>
        <description>drm/sti: 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 sti 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: Alain Volmat &lt;alain.volmat@foss.st.com&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-39-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:12:36 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>74bde758 - drm/sti: Allow build with COMPILE_TEST=y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#74bde758</link>
        <description>drm/sti: Allow build with COMPILE_TEST=yAllow sti to be built with COMPILE_TEST=y for greatercoverage. Builds fine on x86/x86_64 at least.Cc: Alain Volmat &lt;alain.volmat@foss.st.com&gt;Signed-off-by: Ville Syrj&#228;l&#228; &lt;ville.syrjala@linux.intel.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240408170426.9285-8-ville.syrjala@linux.intel.comAcked-by: Alain Volmat &lt;alain.volmat@foss.st.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Mon, 08 Apr 2024 17:04:12 +0000</pubDate>
        <dc:creator>Ville Syrj&#228;l&#228; &lt;ville.syrjala@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9fcc00ea - drm: Drop ARCH_MULTIPLATFORM from dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#9fcc00ea</link>
        <description>drm: Drop ARCH_MULTIPLATFORM from dependenciesSome of these dependencies used to be sensible when only a small part ofthe platforms supported by ARCH=arm could be compiled together in asingle kernel image. Nowadays ARCH_MULTIPLATFORM is only used as a guardfor kernel options incompatible with a multiplatform image. See commit84fc86360623 (&quot;ARM: make ARCH_MULTIPLATFORM user-visible&quot;) for some moredetails.Signed-off-by: Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;Acked-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Reviewed-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Signed-off-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20221209220555.3631364-1-u.kleine-koenig@pengutronix.de

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Fri, 09 Dec 2022 22:05:54 +0000</pubDate>
        <dc:creator>Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>4a83c26a - drm/gem: rename GEM CMA helpers to GEM DMA helpers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#4a83c26a</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-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Tue, 02 Aug 2022 00:04:03 +0000</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>09717af7 - drm: Remove CONFIG_DRM_KMS_CMA_HELPER option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#09717af7</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-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Sat, 06 Nov 2021 19:35:09 +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/gpu/drm/sti/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/gpu/drm/sti/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>c9fea6f4 - drm/sti: Depend on OF rather than selecting it</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#c9fea6f4</link>
        <description>drm/sti: Depend on OF rather than selecting itCommit cc6b741c6f63 (&quot;drm: sti: remove useless fields from vtgstructure&quot;) reworked some code inside of this driver and made it selectCONFIG_OF. This results in the entire OF layer being enabled whenbuilding an allmodconfig on ia64. OF on ia64 is completely unsupportedso this isn&apos;t a great state of affairs.The 0day robot noticed a link-time failure on ia64 caused byusing of_node_to_nid() in an otherwise unrelated driver. Thegeneric fallback for of_node_to_nid() only exists when:	defined(CONFIG_OF) &amp;&amp; defined(CONFIG_NUMA) == falseSince CONFIG_NUMA is usually selected for IA64 we get the link failure.Fix this by making the driver depend on OF rather than selecting it,odds are that was the original intent.Link: https://lists.01.org/pipermail/kbuild-all/2018-March/045172.htmlFixes: cc6b741c6f63 (&quot;drm: sti: remove useless fields from vtg structure&quot;)Cc: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Cc: Vincent Abriou &lt;vincent.abriou@st.com&gt;Cc: David Airlie &lt;airlied@linux.ie&gt;Cc: dri-devel@lists.freedesktop.orgCc: linux-ia64@vger.kernel.orgCc: stable@vger.kernel.orgSigned-off-by: Oliver O&apos;Halloran &lt;oohall@gmail.com&gt;Reviewed-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Signed-off-by: Philippe Cornu &lt;philippe.cornu@st.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20180403053401.30045-1-oohall@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Tue, 03 Apr 2018 05:34:01 +0000</pubDate>
        <dc:creator>Oliver O&apos;Halloran &lt;oohall@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>cc6b741c - drm: sti: remove useless fields from vtg structure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#cc6b741c</link>
        <description>drm: sti: remove useless fields from vtg structureDrivers are registered on platform bus so the private listcould be replace by a call to of_find_device_by_node().Changing this also makes dev, np and link fields uselessin vtg structure.Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/1510146255-24982-1-git-send-email-benjamin.gaignard@linaro.org

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Wed, 08 Nov 2017 13:50:14 +0000</pubDate>
        <dc:creator>Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>b4bba92d - drm/sti: remove stih415-416 platform support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#b4bba92d</link>
        <description>drm/sti: remove stih415-416 platform supportstih415 and stih416 platform are obsolete and no more supported.Only stih407 and stih410 platform are maintained.Signed-off-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;Acked-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Acked-by: Peter Griffin &lt;peter.griffin@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Tue, 20 Sep 2016 13:03:33 +0000</pubDate>
        <dc:creator>Vincent Abriou &lt;vincent.abriou@st.com&gt;</dc:creator>
    </item>
<item>
        <title>2c348e50 - drm: sti: Add ASoC generic hdmi codec support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#2c348e50</link>
        <description>drm: sti: Add ASoC generic hdmi codec support.Add the interface needed by audio hdmi-codec driver.Signed-off-by: Arnaud Pouliquen &lt;arnaud.pouliquen@st.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Mon, 30 May 2016 13:31:37 +0000</pubDate>
        <dc:creator>Arnaud Pouliquen &lt;arnaud.pouliquen@st.com&gt;</dc:creator>
    </item>
<item>
        <title>e1c7e324 - dma-mapping: always provide the dma_map_ops based implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#e1c7e324</link>
        <description>dma-mapping: always provide the dma_map_ops based implementationMove the generic implementation to &lt;linux/dma-mapping.h&gt; now that allarchitectures support it and remove the HAVE_DMA_ATTR Kconfig symbol nowthat everyone supports them.[valentinrothberg@gmail.com: remove leftovers in Kconfig]Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Cc: &quot;David S. Miller&quot; &lt;davem@davemloft.net&gt;Cc: Aurelien Jacquiot &lt;a-jacquiot@ti.com&gt;Cc: Chris Metcalf &lt;cmetcalf@ezchip.com&gt;Cc: David Howells &lt;dhowells@redhat.com&gt;Cc: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Cc: Haavard Skinnemoen &lt;hskinnemoen@gmail.com&gt;Cc: Hans-Christian Egtvedt &lt;egtvedt@samfundet.no&gt;Cc: Helge Deller &lt;deller@gmx.de&gt;Cc: James Hogan &lt;james.hogan@imgtec.com&gt;Cc: Jesper Nilsson &lt;jesper.nilsson@axis.com&gt;Cc: Koichi Yasutake &lt;yasutake.koichi@jp.panasonic.com&gt;Cc: Ley Foon Tan &lt;lftan@altera.com&gt;Cc: Mark Salter &lt;msalter@redhat.com&gt;Cc: Mikael Starvik &lt;starvik@axis.com&gt;Cc: Steven Miao &lt;realmz6@gmail.com&gt;Cc: Vineet Gupta &lt;vgupta@synopsys.com&gt;Cc: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Cc: Joerg Roedel &lt;jroedel@suse.de&gt;Cc: Sebastian Ott &lt;sebott@linux.vnet.ibm.com&gt;Signed-off-by: Valentin Rothberg &lt;valentinrothberg@gmail.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Wed, 20 Jan 2016 23:02:05 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>e00fe64a - drm/sti: load HQVDP firmware the first time HQVDP&apos;s plane is used</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#e00fe64a</link>
        <description>drm/sti: load HQVDP firmware the first time HQVDP&apos;s plane is usedThe way to load the HQVDP firmware has been updated.HQVDP firmware is now loaded the first time an HQVDP plane is used andno more when the HQVDP driver is bound.This solves the dependency we had on the file system availability.The first time the HQVDP plane is used, we are sure that file system isavailable so request_firmware function will match.CONFIG_FW_LOADER_USER_HELPER_FALLBACK is then no more mandatory.Cc: Takashi Iwai &lt;tiwai@suse.de&gt;Signed-off-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Mon, 02 Nov 2015 09:38:15 +0000</pubDate>
        <dc:creator>Vincent Abriou &lt;vincent.abriou@st.com&gt;</dc:creator>
    </item>
<item>
        <title>b5d34a27 - drm/sti: Remove local fbdev emulation Kconfig option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#b5d34a27</link>
        <description>drm/sti: Remove local fbdev emulation Kconfig optionDRM_STI_FBDEV config is currently used to enable/disable fbdev emulationfor the sti kms driver.Remove this local config option and use the core fb helpers withdrm_kms_helper.fbdev_emulation module option to enable/disable fbdevat runtime.Signed-off-by: Archit Taneja &lt;architt@codeaurora.org&gt;Reviewed-by: Vincent Abriou &lt;vincent.abriou@st.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Tue, 27 Oct 2015 08:10:58 +0000</pubDate>
        <dc:creator>Archit Taneja &lt;architt@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>1352be6e - drm/sti: Select FW_LOADER</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#1352be6e</link>
        <description>drm/sti: Select FW_LOADERSelect FW_LOADER explicitly to satify the direct dependency ofFW_LOADER_USER_HELPER_FALLBACK.Acked-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Signed-off-by: Thierry Reding &lt;treding@nvidia.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Fri, 14 Aug 2015 10:45:34 +0000</pubDate>
        <dc:creator>Thierry Reding &lt;treding@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>db88c8f4 - drm: Kconfig: Let all DRM_GEM_CMA_HELPER related macros depend on HAVE_DMA_ATTRS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#db88c8f4</link>
        <description>drm: Kconfig: Let all DRM_GEM_CMA_HELPER related macros depend on HAVE_DMA_ATTRSDRM_GEM_CMA_HELPER is depend on HAVE_DMA_ATTRS, or it will break thebuilding. The related error (with allmodconfig under xtensa):    CC [M]  drivers/gpu/drm/drm_gem_cma_helper.o  drivers/gpu/drm/drm_gem_cma_helper.c: In function &apos;drm_gem_cma_create&apos;:  drivers/gpu/drm/drm_gem_cma_helper.c:110:19: error: implicit declaration of function &apos;dma_alloc_writecombine&apos; [-Werror=implicit-function-declaration]    cma_obj-&gt;vaddr = dma_alloc_writecombine(drm-&gt;dev, size,                     ^  drivers/gpu/drm/drm_gem_cma_helper.c:110:17: warning: assignment makes pointer from integer without a cast [-Wint-conversion]    cma_obj-&gt;vaddr = dma_alloc_writecombine(drm-&gt;dev, size,                   ^  drivers/gpu/drm/drm_gem_cma_helper.c: In function &apos;drm_gem_cma_free_object&apos;:  drivers/gpu/drm/drm_gem_cma_helper.c:193:3: error: implicit declaration of function &apos;dma_free_writecombine&apos; [-Werror=implicit-function-declaration]     dma_free_writecombine(gem_obj-&gt;dev-&gt;dev, cma_obj-&gt;base.size,     ^  drivers/gpu/drm/drm_gem_cma_helper.c: In function &apos;drm_gem_cma_mmap_obj&apos;:  drivers/gpu/drm/drm_gem_cma_helper.c:330:8: error: implicit declaration of function &apos;dma_mmap_writecombine&apos; [-Werror=implicit-function-declaration]    ret = dma_mmap_writecombine(cma_obj-&gt;base.dev-&gt;dev, vma,          ^Signed-off-by: Chen Gang &lt;gang.chen.5i5j@gmail.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Sun, 01 Feb 2015 14:08:33 +0000</pubDate>
        <dc:creator>Chen Gang S &lt;gang.chen@sunrus.com.cn&gt;</dc:creator>
    </item>
<item>
        <title>8e6a363d - drm: sti: add panel dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#8e6a363d</link>
        <description>drm: sti: add panel dependencyThe newly added sti driver requires the drm_panel helpers,and we get a link error if they are not enabledERROR: &quot;drm_panel_attach&quot; [drivers/gpu/drm/sti/stidvo.ko] undefined!ERROR: &quot;of_drm_find_panel&quot; [drivers/gpu/drm/sti/stidvo.ko] undefined!This adds a &apos;select&apos; statement as we have for the other drivers.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Dave Airlie &lt;airlied@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Wed, 28 Jan 2015 13:48:08 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>4fdbc678 - drm: sti: add HQVDP plane</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#4fdbc678</link>
        <description>drm: sti: add HQVDP planeHigh Quality Video Data Plane is hardware IP dedicatedto video rendering. Compare to GPD (graphic planes) ithave better scaler capabilities.HQVDP use VID layer to push data into hardware compositorwithout going into DDR. From data flow point of view HQVDPand VID are nested so HQVPD update/disable VID.Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Thu, 11 Dec 2014 10:38:59 +0000</pubDate>
        <dc:creator>Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>f5ec6c4b - drm: sti: Add missing dependency on RESET_CONTROLLER</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#f5ec6c4b</link>
        <description>drm: sti: Add missing dependency on RESET_CONTROLLERAdd missing dependency on RESET_CONTROLLER in order to fixthe following build error.drivers/gpu/drm/sti/sti_hdmi.c: In function &apos;sti_hdmi_probe&apos;drivers/gpu/drm/sti/sti_hdmi.c:780:2: error: implicit declaration of function &apos;devm_reset_control_get&apos;[-Werror=implicit-function-declaration]Benjamin Gaignard remark:I have change &quot;depends on&quot; to &quot;select&quot; but keep the original author name.Signed-off-by: Jingoo Han &lt;jg1.han@samsung.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Tue, 26 Aug 2014 10:26:18 +0000</pubDate>
        <dc:creator>Jingoo Han &lt;jg1.han@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>9bbf86fe - drm: sti: Add DRM driver itself</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#9bbf86fe</link>
        <description>drm: sti: Add DRM driver itselfMake the link between all the hardware drivers and DRM/KMS interface.Create the driver itself and make it register all the sub-components.Use GEM CMA helpers for buffer allocation.Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Reviewed-by: Rob Clark &lt;robdclark@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Thu, 31 Jul 2014 07:39:11 +0000</pubDate>
        <dc:creator>Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>d219673d - drm: sti: add Compositor</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/sti/Kconfig#d219673d</link>
        <description>drm: sti: add CompositorCompositor control all the input sub-device (VID, GDP)and the mixer(s).It is the main entry point for composition.Layer interface is used to control the abstracted layers.Add debug in mixer and GDP.Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Reviewed-by: Rob Clark &lt;robdclark@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/sti/Kconfig</description>
        <pubDate>Wed, 30 Jul 2014 17:28:27 +0000</pubDate>
        <dc:creator>Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;</dc:creator>
    </item>
</channel>
</rss>
