bcm27xx: 6.1: add kernel patches
[openwrt/staging/stintel.git] / target / linux / bcm27xx / patches-6.1 / 950-0472-drm-tests-Order-Kunit-tests-in-Makefile.patch
1 From e5cda9b56eb3140b7bf698b545686aa850de9928 Mon Sep 17 00:00:00 2001
2 From: Maxime Ripard <maxime@cerno.tech>
3 Date: Thu, 29 Sep 2022 18:30:56 +0200
4 Subject: [PATCH] drm/tests: Order Kunit tests in Makefile
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 Since we've recently added a ton of tests, the list starts to be a bit
10 of a mess and creates unneeded conflicts.
11
12 Let's order it alphabetically.
13
14 Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
15 Reviewed-by: Noralf Trønnes <noralf@tronnes.org>
16 Link: https://lore.kernel.org/r/20220728-rpi-analog-tv-properties-v4-2-60d38873f782@cerno.tech
17 Signed-off-by: Maxime Ripard <maxime@cerno.tech>
18 ---
19 drivers/gpu/drm/tests/Makefile | 14 +++++++++++---
20 1 file changed, 11 insertions(+), 3 deletions(-)
21
22 --- a/drivers/gpu/drm/tests/Makefile
23 +++ b/drivers/gpu/drm/tests/Makefile
24 @@ -1,5 +1,13 @@
25 # SPDX-License-Identifier: GPL-2.0
26
27 -obj-$(CONFIG_DRM_KUNIT_TEST) += drm_format_helper_test.o drm_damage_helper_test.o \
28 - drm_cmdline_parser_test.o drm_rect_test.o drm_format_test.o drm_plane_helper_test.o \
29 - drm_dp_mst_helper_test.o drm_framebuffer_test.o drm_buddy_test.o drm_mm_test.o
30 +obj-$(CONFIG_DRM_KUNIT_TEST) += \
31 + drm_buddy_test.o \
32 + drm_cmdline_parser_test.o \
33 + drm_damage_helper_test.o \
34 + drm_dp_mst_helper_test.o \
35 + drm_format_helper_test.o \
36 + drm_format_test.o \
37 + drm_framebuffer_test.o \
38 + drm_mm_test.o \
39 + drm_plane_helper_test.o \
40 + drm_rect_test.o