kms_rotation_crc: Fix style issue: '{' at the end of lines
authorDamien Lespiau <damien.lespiau@intel.com>
Tue, 8 Jul 2014 11:26:38 +0000 (12:26 +0100)
committerDamien Lespiau <damien.lespiau@intel.com>
Fri, 11 Jul 2014 14:12:22 +0000 (15:12 +0100)
Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
tests/kms_rotation_crc.c

index db1ad57..9c194ce 100644 (file)
@@ -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);