<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>5164f7e7ff8ec7d41065d3862630c2ba09854328 - drm: Rename struct drm_atomic_state to drm_atomic_commit</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#5164f7e7ff8ec7d41065d3862630c2ba09854328</link>
        <description>drm: Rename struct drm_atomic_state to drm_atomic_commitThe KMS framework uses two slightly different definitions for the stateconcept. For a given object (plane, CRTC, encoder, etc., sodrm_$OBJECT_state), the state is the entire state of that object.However, at the device level, drm_atomic_state refers to a state updatefor a limited number of objects.Thus, drm_atomic_state isn&apos;t the entire device state, but only the fullstate of some objects in that device. This has been an endless source ofconfusion and thus bugs.We can rename the drm_atomic_state structure to drm_atomic_commit tomake it less confusing.This patch was created using:rg -l drm_atomic_state | \	xargs sed -i &apos;s/drm_atomic_state/drm_atomic_commit/g; s/drm_atomic_commit_helper/drm_atomic_state_helper/g&apos;mv drivers/gpu/drm/tests/drm_atomic_state_test.c drivers/gpu/drm/tests/drm_atomic_commit_test.cAcked-by: Simona Vetter &lt;simona.vetter@ffwll.ch&gt;Acked-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Acked-by: Jani Nikula &lt;jani.nikula@intel.com&gt;Reviewed-by: Luca Ceresoli &lt;luca.ceresoli@bootlin.com&gt;Tested-by: Luca Ceresoli &lt;luca.ceresoli@bootlin.com&gt;Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;Link: https://patch.msgid.link/20260427-drm-drm-atomic-update-v4-1-c0e713bfdf25@kernel.org

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Mon, 27 Apr 2026 09:02:57 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4a9671a03f2be13acde0cb15c5208767a9cc56e4 - gpu: Move DRM buddy allocator one level up (part one)</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#4a9671a03f2be13acde0cb15c5208767a9cc56e4</link>
        <description>gpu: Move DRM buddy allocator one level up (part one)Move the DRM buddy allocator one level up so that it can be used by GPUdrivers (example, nova-core) that have usecases other than DRM (such asVFIO vGPU support). Modify the API, structures and Kconfigs to use&quot;gpu_buddy&quot; terminology. Adapt the drivers and tests to use the new API.The commit cannot be split due to bisectability, however no functionalchange is intended. Verified by running K-UNIT tests and build testedvarious configurations.Signed-off-by: Joel Fernandes &lt;joelagnelf@nvidia.com&gt;Reviewed-by: Dave Airlie &lt;airlied@redhat.com&gt;[airlied: I&apos;ve split this into two so git can find copies easier.I&apos;ve also just nuked drm_random library, that stuff needs to be doneelsewhere and only the buddy tests seem to be using it].Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 05 Feb 2026 23:52:38 +0100</pubDate>
        <dc:creator>Joel Fernandes &lt;joelagnelf@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>b7f513803bdff4d509093b9bfad881ff57ede321 - drm/tests: Add a few tests around drm_fixed.h</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#b7f513803bdff4d509093b9bfad881ff57ede321</link>
        <description>drm/tests: Add a few tests around drm_fixed.hWhile working on the CTM implementation of VKMS I had to ascertainmyself of a few assumptions. One of those is whether drm_fixed.htreats its numbers using signed-magnitude or twos-complement. It istwos-complement.In order to make someone else&apos;s day easier I am adding thedrm_test_int2fixp test that validates the above assumption.I am also adding a test for the new sm2fixp function that convertsfrom a signed-magnitude fixed point to the twos-complement fixedpoint.Reviewed-by: Louis Chauvet &lt;louis.chauvet@bootlin.com&gt;Signed-off-by: Alex Hung &lt;alex.hung@amd.com&gt;Signed-off-by: Harry Wentland &lt;harry.wentland@amd.com&gt;Reviewed-by: Daniel Stone &lt;daniels@collabora.com&gt;Signed-off-by: Simon Ser &lt;contact@emersion.fr&gt;Link: https://patch.msgid.link/20251115000237.3561250-22-alex.hung@amd.com

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Sat, 15 Nov 2025 01:01:46 +0100</pubDate>
        <dc:creator>Harry Wentland &lt;harry.wentland@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>4f522a44d9e4f630cca73b88fe59d5f7975c8379 - drm/tests: Test drm_fb_build_fourcc_list() in separate test suite</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#4f522a44d9e4f630cca73b88fe59d5f7975c8379</link>
        <description>drm/tests: Test drm_fb_build_fourcc_list() in separate test suiteOnly sysfb drivers use drm_fb_build_fourcc_list(). The helper willbe moved from format helpers to sysfb helpers. Moving the relatedtests to their own test suite.v3:- rename tests according to filename (Jos&#233;)v2:- rename filename to match tested code (Maxime)Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Jos&#233; Exp&#243;sito &lt;jose.exposito89@gmail.com&gt;Acked-by: Maxime Ripard &lt;mripard@kernel.org&gt;Link: https://lore.kernel.org/r/20250616083846.221396-3-tzimmermann@suse.de

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Mon, 16 Jun 2025 10:37:05 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>e0c358e2edf5906689ecb46053d755fcaf4339f0 - drm/tests: Create tests for drm_atomic</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#e0c358e2edf5906689ecb46053d755fcaf4339f0</link>
        <description>drm/tests: Create tests for drm_atomicWe don&apos;t have a set of kunit tests for the functions under drm_atomic.h.Let&apos;s use the introduction of drm_atomic_get_connector_for_encoder() tocreate some tests for it and thus create that set.Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20250313-bridge-connector-v6-7-511c54a604fb@kernel.orgSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 13 Mar 2025 13:00:01 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6b4dc0803a362f501047e08caddfeb92a580130d - drm/tests: Add kunit tests for bridges</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#6b4dc0803a362f501047e08caddfeb92a580130d</link>
        <description>drm/tests: Add kunit tests for bridgesNone of the drm_bridge function have kunit tests so far. Let&apos;s changethat, starting with drm_bridge_get_current_state().Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20250313-bridge-connector-v6-3-511c54a604fb@kernel.orgSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 13 Mar 2025 12:59:57 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>73d934d7b6e39a3e52586467a30ca3ff3f6f9eb4 - drm/tests: Add test for drm_atomic_helper_commit_modeset_disables()</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#73d934d7b6e39a3e52586467a30ca3ff3f6f9eb4</link>
        <description>drm/tests: Add test for drm_atomic_helper_commit_modeset_disables()Add a subtest to check that modeset is called when the connector ischangedSigned-off-by: Jessica Zhang &lt;quic_jesszhan@quicinc.com&gt;Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Reviewed-by: Maxime Ripard &lt;mripard@kernel.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20241211-abhinavk-modeset-fix-v3-2-0de4bf3e7c32@quicinc.comSigned-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Wed, 11 Dec 2024 22:18:43 +0100</pubDate>
        <dc:creator>Jessica Zhang &lt;quic_jesszhan@quicinc.com&gt;</dc:creator>
    </item>
<item>
        <title>eb66d34d793ed48494820ce908c8c821b8e6cae5 - drm/tests: Add output bpc tests</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#eb66d34d793ed48494820ce908c8c821b8e6cae5</link>
        <description>drm/tests: Add output bpc testsNow that we&apos;re tracking the output bpc count in the connector state,let&apos;s add a few tests to make sure it works as expected.Reviewed-by: Dave Stevenson &lt;dave.stevenson@raspberrypi.com&gt;Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Tested-by: Sui Jingfeng &lt;sui.jingfeng@linux.dev&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240527-kms-hdmi-connector-state-v15-6-c5af16c3aae2@kernel.orgSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Mon, 27 May 2024 15:57:55 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>93032ae634d409e621c68a2fb7d6930e7eebb1d9 - drm/test: add a test suite for GEM objects backed by shmem</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#93032ae634d409e621c68a2fb7d6930e7eebb1d9</link>
        <description>drm/test: add a test suite for GEM objects backed by shmemThis patch introduces an initial KUnit test suite for GEM objectsbacked by shmem buffers.Suggested-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Signed-off-by: Marco Pagani &lt;marpagan@redhat.com&gt;v5:- using __drm_kunit_helper_alloc_drm_device() to avoid local structv4:- Add missing MMU dependency for DRM_GEM_SHMEM_HELPER (kernel test robot)v3:- Explicitly cast pointers in the helpers- Removed unused pointer to parent dev in struct fake_dev- Test entries reordering in Kconfig and Makefile sent as a separate patchv2:- Improved description of test cases- Cleaner error handling using KUnit actions- Alphabetical order in Kconfig and MakefileSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20231130171417.74162-1-marpagan@redhat.com

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 30 Nov 2023 18:14:16 +0100</pubDate>
        <dc:creator>Marco Pagani &lt;marpagan@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>f740f031cce7703a966ad0279d0f15973d61df16 - drm/test: rearrange test entries in Kconfig and Makefile</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#f740f031cce7703a966ad0279d0f15973d61df16</link>
        <description>drm/test: rearrange test entries in Kconfig and MakefileRearrange entries in Kconfig and Makefile alphabetically to make roomfor additional KUnit test suites.Signed-off-by: Marco Pagani &lt;marpagan@redhat.com&gt;Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20231115103537.220760-1-marpagan@redhat.com

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Wed, 15 Nov 2023 11:35:36 +0100</pubDate>
        <dc:creator>Marco Pagani &lt;marpagan@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>9710631cc8f367da04879760b892a8fc7aac9f45 - drm: add drm_exec selftests v4</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#9710631cc8f367da04879760b892a8fc7aac9f45</link>
        <description>drm: add drm_exec selftests v4Exercise at least all driver facing functions of this new component.v2: add array test as wellv3: some kunit cleanupsv4: more tests and cleanupsSigned-off-by: Christian K&#246;nig &lt;christian.koenig@amd.com&gt;Acked-by: Alex Deucher &lt;alexander.deucher@amd.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230711133122.3710-3-christian.koenig@amd.com

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Wed, 13 Apr 2022 16:09:00 +0200</pubDate>
        <dc:creator>Christian K&#246;nig &lt;christian.koenig@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>aebd8f0c6f8280ba35bc989f4a9ea47469d3589a - Merge v6.2-rc6 into drm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#aebd8f0c6f8280ba35bc989f4a9ea47469d3589a</link>
        <description>Merge v6.2-rc6 into drm-nextDue to holidays we started -next with more -fixes in-flight thanusual, and people have been asking where they are. Backmerge to getthings better in sync.Conflicts:- Tiny conflict in drm_fbdev_generic.c between variable rename and  missing error handling that got added.- Conflict in drm_fb_helper.c between the added call to vgaswitcheroo  in drm_fb_helper_single_fb_probe and a refactor patch that extracted  lots of helpers and incidentally removed the dev local variable.  Readd it to make things compile.Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Tue, 31 Jan 2023 11:22:15 +0100</pubDate>
        <dc:creator>Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;</dc:creator>
    </item>
<item>
        <title>523dfa96add75e60cfe6bf5a1c8f713635cd6b73 - drm/tests: reduce drm_mm_test stack usage</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#523dfa96add75e60cfe6bf5a1c8f713635cd6b73</link>
        <description>drm/tests: reduce drm_mm_test stack usageThe check_reserve_boundaries function uses a lot of kernel stack,and it gets inlined by clang, which makes __drm_test_mm_reserveuse even more of it, to the point of hitting the warning limit:drivers/gpu/drm/tests/drm_mm_test.c:344:12: error: stack frame size (1048) exceeds limit (1024) in &apos;__drm_test_mm_reserve&apos; [-Werror,-Wframe-larger-than]When building with gcc, this does not happen, but the structleakplugin can similarly increase the stack usage and needs to bedisabled, as we do for all other kunit users.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Ma&#237;ra Canal &lt;mcanal@igalia.com&gt;Reviewed-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Signed-off-by: Ma&#237;ra Canal &lt;mairacanal@riseup.net&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20221215163511.266214-1-arnd@kernel.org

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 15 Dec 2022 17:34:49 +0100</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>4adf59449f990fb8054159f6c3b350790dee1fce - drm/tests: Add a test for DRM managed actions</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#4adf59449f990fb8054159f6c3b350790dee1fce</link>
        <description>drm/tests: Add a test for DRM managed actionsDRM-managed actions are supposed to be ran whenever the device isreleased. Let&apos;s introduce a basic unit test to make sure it happens.Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Reviewed-by: Ma&#237;ra Canal &lt;mcanal@igalia.com&gt;Link: https://lore.kernel.org/r/20221123-rpi-kunit-tests-v3-12-4615a663a84a@cerno.techSigned-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 01 Dec 2022 16:11:43 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
<item>
        <title>b85be04294ffa49574a0e662e626066320349ef3 - drm/tests: Introduce a config option for the KUnit helpers</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#b85be04294ffa49574a0e662e626066320349ef3</link>
        <description>drm/tests: Introduce a config option for the KUnit helpersDriver-specific tests will need access to the helpers without pullingevery DRM framework test. Let&apos;s create an intermediate Kconfig optionsfor the helpers.Suggested-by: Ma&#237;ra Canal &lt;mcanal@igalia.com&gt;Reviewed-by: Ma&#237;ra Canal &lt;mcanal@igalia.com&gt;Link: https://lore.kernel.org/r/20221123-rpi-kunit-tests-v3-2-4615a663a84a@cerno.techSigned-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 01 Dec 2022 16:11:33 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
<item>
        <title>1e4a91db109f623d0e3ef7d8bfae3c88b4d2fa87 - drm/probe-helper: Provide a TV get_modes helper</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#1e4a91db109f623d0e3ef7d8bfae3c88b4d2fa87</link>
        <description>drm/probe-helper: Provide a TV get_modes helperMost of the TV connectors will need a similar get_modes implementationthat will, depending on the drivers&apos; capabilities, register the 480i and576i modes.That implementation will also need to set the preferred flag and orderthe modes based on the driver and users preferrence.This is especially important to guarantee that a userspace stack such asXorg can start and pick up the preferred mode while maintaining aworking output.Signed-off-by: Noralf Tr&#248;nnes &lt;noralf@tronnes.org&gt;Tested-by: Mateusz Kwiatkowski &lt;kfyatek+publicgit@gmail.com&gt;Acked-in-principle-or-something-like-that-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://lore.kernel.org/r/20220728-rpi-analog-tv-properties-v10-12-256dad125326@cerno.techSigned-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 17 Nov 2022 10:28:55 +0100</pubDate>
        <dc:creator>Noralf Tr&#248;nnes &lt;noralf@tronnes.org&gt;</dc:creator>
    </item>
<item>
        <title>d4613e3e50d34bc30ea384b8bf9560e874451640 - drm/connector: Add a function to lookup a TV mode by its name</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#d4613e3e50d34bc30ea384b8bf9560e874451640</link>
        <description>drm/connector: Add a function to lookup a TV mode by its nameAs part of the command line parsing rework coming in the next patches,we&apos;ll need to lookup drm_connector_tv_mode values by their name, alreadydefined in drm_tv_mode_enum_list.In order to avoid any code duplication, let&apos;s do a function that willperform a lookup of a TV mode name and return its value.Reviewed-by: Noralf Tr&#248;nnes &lt;noralf@tronnes.org&gt;Tested-by: Mateusz Kwiatkowski &lt;kfyatek+publicgit@gmail.com&gt;Acked-in-principle-or-something-like-that-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://lore.kernel.org/r/20220728-rpi-analog-tv-properties-v10-7-256dad125326@cerno.techSigned-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 17 Nov 2022 10:28:50 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
<item>
        <title>4fcd238560ee6724d6edcae95820bdf7f2e40ab1 - drm/modes: Add a function to generate analog display modes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#4fcd238560ee6724d6edcae95820bdf7f2e40ab1</link>
        <description>drm/modes: Add a function to generate analog display modesMultiple drivers (meson, vc4, sun4i) define analog TV 525-lines and625-lines modes in their drivers.Since those modes are fairly standard, and that we&apos;ll need to use themin more places in the future, it makes sense to move their definitioninto the core framework.However, analog display usually have fairly loose timings requirements,the only discrete parameters being the total number of lines and pixelclock frequency. Thus, we created a function that will create a displaymode from the standard, the pixel frequency and the active area.Tested-by: Mateusz Kwiatkowski &lt;kfyatek+publicgit@gmail.com&gt;Acked-in-principle-or-something-like-that-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://lore.kernel.org/r/20220728-rpi-analog-tv-properties-v10-6-256dad125326@cerno.techSigned-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 17 Nov 2022 10:28:49 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
<item>
        <title>44a3928324e9757f7c321535756730be948941c2 - drm/tests: Add Kunit Helpers</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#44a3928324e9757f7c321535756730be948941c2</link>
        <description>drm/tests: Add Kunit HelpersAs the number of kunit tests in KMS grows further, we start to havemultiple test suites that, for example, need to register a mock DRMdriver to interact with the KMS function they are supposed to test.Let&apos;s add a file meant to provide those kind of helpers to avoidduplication.Reviewed-by: Noralf Tr&#248;nnes &lt;noralf@tronnes.org&gt;Tested-by: Mateusz Kwiatkowski &lt;kfyatek+publicgit@gmail.com&gt;Link: https://lore.kernel.org/r/20220728-rpi-analog-tv-properties-v9-2-24b168e5bcd5@cerno.techSigned-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Mon, 14 Nov 2022 14:00:21 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
<item>
        <title>542bbaa736026c99237d6d93e4fff46762a55ff7 - drm/tests: Order Kunit tests in Makefile</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/tests/Makefile#542bbaa736026c99237d6d93e4fff46762a55ff7</link>
        <description>drm/tests: Order Kunit tests in MakefileSince we&apos;ve recently added a ton of tests, the list starts to be a bitof a mess and creates unneeded conflicts.Let&apos;s order it alphabetically.Acked-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Noralf Tr&#248;nnes &lt;noralf@tronnes.org&gt;Link: https://lore.kernel.org/r/20220728-rpi-analog-tv-properties-v4-2-60d38873f782@cerno.techSigned-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/gpu/drm/tests/Makefile</description>
        <pubDate>Thu, 29 Sep 2022 18:30:56 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
</channel>
</rss>
