mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-15 14:32:06 +00:00
Due to holidays we started -next with more -fixes in-flight than usual, and people have been asking where they are. Backmerge to get things 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 <daniel.vetter@ffwll.ch>
23 lines
522 B
Makefile
23 lines
522 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_DRM_KUNIT_TEST_HELPERS) += \
|
|
drm_kunit_helpers.o
|
|
|
|
obj-$(CONFIG_DRM_KUNIT_TEST) += \
|
|
drm_buddy_test.o \
|
|
drm_cmdline_parser_test.o \
|
|
drm_connector_test.o \
|
|
drm_damage_helper_test.o \
|
|
drm_dp_mst_helper_test.o \
|
|
drm_format_helper_test.o \
|
|
drm_format_test.o \
|
|
drm_framebuffer_test.o \
|
|
drm_managed_test.o \
|
|
drm_mm_test.o \
|
|
drm_modes_test.o \
|
|
drm_plane_helper_test.o \
|
|
drm_probe_helper_test.o \
|
|
drm_rect_test.o
|
|
|
|
CFLAGS_drm_mm_test.o := $(DISABLE_STRUCTLEAK_PLUGIN)
|