diff options
| author | Carlos Eduardo Gallo Filho <[email protected]> | 2023-06-24 21:29:05 +0000 |
|---|---|---|
| committer | Maíra Canal <[email protected]> | 2023-06-28 23:39:15 +0000 |
| commit | 81c5e39b386cf2059854a213b597b337cba25e15 (patch) | |
| tree | cf75617b3758c1054ae88e85908cfb20f34075e5 /drivers/gpu/drm/tests/drm_framebuffer_test.c | |
| parent | drm/edid: make read-only const array static (diff) | |
| download | kernel-81c5e39b386cf2059854a213b597b337cba25e15.tar.gz kernel-81c5e39b386cf2059854a213b597b337cba25e15.zip | |
drm/tests: Fix swapped drm_framebuffer tests parameter names
Swap tests parameters names so they actually reflect what is being tested.
Signed-off-by: Carlos Eduardo Gallo Filho <[email protected]>
Reviewed-by: André Almeida <[email protected]>
Reviewed-by: Maíra Canal <[email protected]>
Signed-off-by: Maíra Canal <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Diffstat (limited to 'drivers/gpu/drm/tests/drm_framebuffer_test.c')
| -rw-r--r-- | drivers/gpu/drm/tests/drm_framebuffer_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tests/drm_framebuffer_test.c b/drivers/gpu/drm/tests/drm_framebuffer_test.c index df235b7fdaa5..f759d9f3b76e 100644 --- a/drivers/gpu/drm/tests/drm_framebuffer_test.c +++ b/drivers/gpu/drm/tests/drm_framebuffer_test.c @@ -178,13 +178,13 @@ static const struct drm_framebuffer_test drm_framebuffer_create_cases[] = { .handles = { 1, 1, 1 }, .pitches = { 600, 600, 600 }, } }, -{ .buffer_created = 1, .name = "YVU420 Normal sizes", +{ .buffer_created = 1, .name = "YVU420 DRM_MODE_FB_MODIFIERS set without modifier", .cmd = { .width = 600, .height = 600, .pixel_format = DRM_FORMAT_YVU420, .handles = { 1, 1, 1 }, .flags = DRM_MODE_FB_MODIFIERS, .pitches = { 600, 300, 300 }, } }, -{ .buffer_created = 1, .name = "YVU420 DRM_MODE_FB_MODIFIERS set without modifier", +{ .buffer_created = 1, .name = "YVU420 Normal sizes", .cmd = { .width = 600, .height = 600, .pixel_format = DRM_FORMAT_YVU420, .handles = { 1, 1, 1 }, .pitches = { 600, 300, 300 }, } |
