[Intel-gfx] [PATCH i-g-t 15/43] kms_rotation_crc: Fix style issue: single statement conditionals
Damien Lespiau
damien.lespiau at intel.com
Thu Jul 10 20:00:16 CEST 2014
Signed-off-by: Damien Lespiau <damien.lespiau at intel.com>
---
tests/kms_rotation_crc.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index 9c194ce..eb63326 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);
--
1.8.3.1
More information about the Intel-gfx
mailing list