summaryrefslogtreecommitdiff
path: root/tests/kms_rotation_crc.c
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2014-07-08 12:26:38 +0100
committerDamien Lespiau <damien.lespiau@intel.com>2014-07-11 15:12:22 +0100
commitde9c1687f91b8c24b78ca10edc7166743dca5024 (patch)
tree4be55ed51dd46c92a560354461fe322200f44af7 /tests/kms_rotation_crc.c
parent1025a114c6b188dab2680c577288372f5986e0e0 (diff)
kms_rotation_crc: Fix style issue: '{' at the end of lines
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'tests/kms_rotation_crc.c')
-rw-r--r--tests/kms_rotation_crc.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c
index db1ad57f..9c194ce5 100644
--- a/tests/kms_rotation_crc.c
+++ b/tests/kms_rotation_crc.c
@@ -183,12 +183,10 @@ static bool check_plane_type(int drm_fd, uint32_t plane_id, uint32_t type)
props = drmModeObjectGetProperties(drm_fd, plane_id, DRM_MODE_OBJECT_PLANE);
- for (i = 0; i < props->count_props; i++)
- {
+ for (i = 0; i < props->count_props; i++) {
drmModePropertyPtr prop = drmModeGetProperty(drm_fd, props->props[i]);
- if (strcmp(prop->name, "type") == 0)
- {
+ if (strcmp(prop->name, "type") == 0) {
if (props->prop_values[i] == type) {
return true;
}
@@ -250,23 +248,19 @@ static int set_plane_property(data_t *data, int plane_id, const char *prop_name,
value = (uint64_t)val;
props = drmModeObjectGetProperties(drm_fd, plane_id, DRM_MODE_OBJECT_PLANE);
- for (i = 0; i < props->count_props; i++)
- {
+ for (i = 0; i < props->count_props; i++) {
drmModePropertyPtr prop = drmModeGetProperty(drm_fd, props->props[i]);
igt_info("\nProp->name=%s: plane_id:%d\n ", prop->name, plane_id);
- if (strcmp(prop->name, prop_name) == 0)
- {
+ if (strcmp(prop->name, prop_name) == 0) {
ret = drmModeObjectSetProperty(drm_fd, plane_id, DRM_MODE_OBJECT_PLANE,
(uint32_t)prop->prop_id, value);
- if (ret)
- {
+ if (ret) {
igt_info("set_property \"%s\" to %d for plane %d is failed, err:%d\n", prop_name, val, plane_id, ret);
drmModeFreeProperty(prop);
drmModeFreeObjectProperties(props);
return ret;
- }
- else {
+ } else {
/* Collect crc after rotation */
igt_pipe_crc_collect_crc(data->pipe_crc, crc_output);
drmModeFreeProperty(prop);