fix syntax error(space to tab) 42/166842/1
authorJunkyeong Kim <jk0430.kim@samsung.com>
Fri, 12 Jan 2018 06:01:38 +0000 (15:01 +0900)
committerJunkyeong Kim <jk0430.kim@samsung.com>
Fri, 12 Jan 2018 06:01:41 +0000 (15:01 +0900)
Change-Id: I824f003ebbd3215968b60067ef1122e7403fd553
Signed-off-by: Junkyeong Kim <jk0430.kim@samsung.com>
src/tdm_nexell.h

index 200c51abdda72b5c5ef0f8ba000708ff174b583f..4290cc1f42a6f0c09569b85ad0a7997a35f56903 100644 (file)
@@ -87,39 +87,39 @@ tdm_error    nexell_pp_set_done_handler(tdm_pp *pp, tdm_pp_done_handler func, vo
 #define ALIGN_TO_64KB(x)   ((((x) + (1 << 16) - 1) >> 16) << 16)
 
 #define RETURN_VAL_IF_FAIL(cond, val) {\
-    if (!(cond)) {\
-        TDM_ERR("'%s' failed", #cond);\
-        return val;\
-    }\
+       if (!(cond)) {\
+               TDM_ERR("'%s' failed", #cond);\
+               return val;\
+       }\
 }
 
 #define GOTO_IF_FAIL(cond, val) {\
-    if (!(cond)) {\
-        TDM_ERR("'%s' failed", #cond);\
-        goto val;\
-    }\
+       if (!(cond)) {\
+               TDM_ERR("'%s' failed", #cond);\
+               goto val;\
+       }\
 }
 
 typedef struct _tdm_nexell_data
 {
-    tdm_display *dpy;
+       tdm_display *dpy;
 
-    int drm_fd;
+       int drm_fd;
 
 #if LIBDRM_MAJOR_VERSION >= 2 && LIBDRM_MINOR_VERSION >= 4  && LIBDRM_MICRO_VERSION >= 47
-    int has_universal_plane;
+       int has_universal_plane;
 #endif
 
 #if HAVE_UDEV
-    struct udev_monitor *uevent_monitor;
-    tdm_event_loop_source *uevent_source;
+       struct udev_monitor *uevent_monitor;
+       tdm_event_loop_source *uevent_source;
 #endif
 
-    drmModeResPtr mode_res;
-    drmModePlaneResPtr plane_res;
+       drmModeResPtr mode_res;
+       drmModePlaneResPtr plane_res;
 
-    struct list_head output_list;
-    struct list_head buffer_list;
+       struct list_head output_list;
+       struct list_head buffer_list;
 } tdm_nexell_data;
 
 uint32_t     tdm_nexell_format_to_drm_format(tbm_format format);