summaryrefslogtreecommitdiff
path: root/tests/kms_rotation_crc.c
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2014-07-08 12:28:41 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2014-07-11 15:12:22 +0100
commit78fac765238e4b21dd21cf2d105f26955a2f41d8 (patch)
tree0cb7811c3fed16de5c67ca2b88af84d9f7c42776 /tests/kms_rotation_crc.c
parentde9c1687f91b8c24b78ca10edc7166743dca5024 (diff)
kms_rotation_crc: Fix style issue: single statement conditionals
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'tests/kms_rotation_crc.c')
-rw-r--r--tests/kms_rotation_crc.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 9c194ce5..eb633263 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -187,9 +187,9 @@ static bool check_plane_type(int drm_fd, uint32_t plane_id, uint32_t type)
drmModePropertyPtr prop = drmModeGetProperty(drm_fd, props->props[i]);
if (strcmp(prop->name, "type") == 0) {
- if (props->prop_values[i] == type) {
+ if (props->prop_values[i] == type)
return true;
- }
+
igt_info("Didn't find the requested type:%u\n", (unsigned int)props->prop_values[i]);
}
}
@@ -283,12 +283,10 @@ static void cleanup_crtc(data_t *data, igt_output_t *output)
igt_remove_fb(data->gfx_fd, &data->fb);
- if (data->type == DRM_PLANE_TYPE_PRIMARY) {
+ if (data->type == DRM_PLANE_TYPE_PRIMARY)
plane = igt_output_get_plane(output, IGT_PLANE_PRIMARY);
- }
- else if (data->type == DRM_PLANE_TYPE_OVERLAY) {
+ else if (data->type == DRM_PLANE_TYPE_OVERLAY)
plane = igt_output_get_plane(output, IGT_PLANE_2);
- }
if (plane != NULL)
igt_plane_set_fb(plane, NULL);