<?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>13391209 - drm/vboxvideo: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig#13391209</link>
        <description>drm/vboxvideo: 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 vboxvideo 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: Hans de Goede &lt;hdegoede@redhat.com&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-71-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:13:08 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>4f7f1973 - drm/vram: fix Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig#4f7f1973</link>
        <description>drm/vram: fix Kconfigselect isn&apos;t recursive, so we can&apos;t turn on DRM_TTM + DRM_TTM_HELPERin config DRM_VRAM_HELPER, we have to select them on the vram usersinstead.Signed-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;Acked-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20190904054740.20817-8-kraxel@redhat.com

            List of files:
            /linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig</description>
        <pubDate>Wed, 04 Sep 2019 05:47:40 +0000</pubDate>
        <dc:creator>Gerd Hoffmann &lt;kraxel@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>94065bf5 - drm/vboxvideo: Convert vboxvideo driver to VRAM MM</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig#94065bf5</link>
        <description>drm/vboxvideo: Convert vboxvideo driver to VRAM MMThe data structure |struct drm_vram_mm| and its helpers replace vboxvideo&apos;sTTM-based memory manager. It&apos;s the same implementation; except for the typenames.v4:	* don&apos;t select DRM_TTM or DRM_VRAM_MM_HELPERv3:	* use drm_gem_vram_mm_funcs	* convert driver to drm_device-based instancev2:	* implement vbox_mmap() with drm_vram_mm_mmap()Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20190508082630.15116-19-tzimmermann@suse.deSigned-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig</description>
        <pubDate>Wed, 08 May 2019 08:26:28 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>5e6b9255 - drm/vboxvideo: Convert vboxvideo driver to |struct drm_gem_vram_object|</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig#5e6b9255</link>
        <description>drm/vboxvideo: Convert vboxvideo driver to |struct drm_gem_vram_object|This patch replaces |struct vbox_bo| and its helpers with the genericimplementation of |struct drm_gem_vram_object|. The only change insemantics is that &amp;ttm_bo_driver.verify_access() now does the actualverification.v4:	* select config option DRM_VRAM_HELPERv3:	* remove forward declaration of struct vbox_gem_objectv2:	nothingSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20190508082630.15116-18-tzimmermann@suse.deSigned-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig</description>
        <pubDate>Wed, 08 May 2019 08:26:27 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>131abc56 - drm/vboxvideo: Move the vboxvideo driver out of staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig#131abc56</link>
        <description>drm/vboxvideo: Move the vboxvideo driver out of stagingThe vboxvideo driver has been converted to the atomic modesetting APIand all FIXME and TODO items have been fixed, so it is time to move it outof staging.Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20190304164724.10210-4-hdegoede@redhat.com

            List of files:
            /linux-6.15/drivers/gpu/drm/vboxvideo/Kconfig</description>
        <pubDate>Mon, 04 Mar 2019 16:47:24 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
</channel>
</rss>
