mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
Revert "drm/vc4: tests: Add helper to add a new plane to a state"
This reverts commit 379066bd69.
This commit is contained in:
@@ -39,9 +39,6 @@ struct vc4_dummy_plane {
|
|||||||
struct vc4_plane plane;
|
struct vc4_plane plane;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct vc4_dummy_plane *vc4_dummy_plane(struct kunit *test,
|
|
||||||
struct drm_device *drm,
|
|
||||||
enum drm_plane_type type);
|
|
||||||
struct drm_plane *vc4_dummy_plane(struct kunit *test, struct drm_device *drm,
|
struct drm_plane *vc4_dummy_plane(struct kunit *test, struct drm_device *drm,
|
||||||
enum drm_plane_type type);
|
enum drm_plane_type type);
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
#include <drm/drm_kunit_helpers.h>
|
#include <drm/drm_kunit_helpers.h>
|
||||||
#include <drm/drm_atomic_uapi.h>
|
|
||||||
#include <drm/drm_plane.h>
|
#include <drm/drm_plane.h>
|
||||||
|
|
||||||
#include <kunit/test.h>
|
#include <kunit/test.h>
|
||||||
@@ -41,24 +40,3 @@ struct drm_plane *vc4_dummy_plane(struct kunit *test, struct drm_device *drm,
|
|||||||
|
|
||||||
return plane;
|
return plane;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct drm_plane *
|
|
||||||
vc4_mock_atomic_add_plane(struct kunit *test,
|
|
||||||
struct drm_atomic_state *state,
|
|
||||||
struct drm_crtc *crtc)
|
|
||||||
{
|
|
||||||
struct drm_plane_state *plane_state;
|
|
||||||
struct drm_plane *plane;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
plane = vc4_mock_find_plane_for_crtc(test, crtc);
|
|
||||||
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, plane);
|
|
||||||
|
|
||||||
plane_state = drm_atomic_get_plane_state(state, plane);
|
|
||||||
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, plane_state);
|
|
||||||
|
|
||||||
ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
|
|
||||||
KUNIT_EXPECT_EQ(test, ret, 0);
|
|
||||||
|
|
||||||
return plane;
|
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user