hwc: fix coding rule 86/199186/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Thu, 7 Feb 2019 04:56:09 +0000 (13:56 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Thu, 7 Feb 2019 04:56:15 +0000 (13:56 +0900)
Change-Id: I3044476866b1ec6f4cdc9ff8bb1d64c245aa45e9

src/tdm_sprd_hwc.c

index 0e7c83f117b4018f5562f36cfe7f4e271cb8ad8a..3c654647ca7333ab4c1a3595d2dfad71b45a89c2 100644 (file)
@@ -42,23 +42,23 @@ _print_validate_result(tdm_sprd_hwc_data *hwc_data, tdm_hwc_window **composited_
        for (i = 0; i < num_wnds; i++) {
                hwc_window_data = composited_wnds[i];
                switch (hwc_window_data->validated_type) {
-                       case TDM_HWC_WIN_COMPOSITION_CLIENT:
-                               TDM_DBG(" window(%p) %s -> %s : lzpos(%d) on TARGET WINDOW", hwc_window_data,
-                                               _comp_to_str(hwc_window_data->client_type),
-                                               _comp_to_str(hwc_window_data->validated_type),
-                                           hwc_data->target_hwc_window->lzpos);
-                               break;
-                       case TDM_HWC_WIN_COMPOSITION_DEVICE:
-                       case TDM_HWC_WIN_COMPOSITION_VIDEO:
-                       case TDM_HWC_WIN_COMPOSITION_CURSOR:
-                       case TDM_HWC_WIN_COMPOSITION_NONE:
-                               TDM_DBG(" window(%p) %s -> %s : lzpos(%d)", hwc_window_data,
-                                               _comp_to_str(hwc_window_data->client_type),
-                                               _comp_to_str(hwc_window_data->validated_type),
-                                           hwc_window_data->lzpos);
-                               break;
-                       default:
-                               break;
+               case TDM_HWC_WIN_COMPOSITION_CLIENT:
+                       TDM_DBG(" window(%p) %s -> %s : lzpos(%d) on TARGET WINDOW", hwc_window_data,
+                                       _comp_to_str(hwc_window_data->client_type),
+                                       _comp_to_str(hwc_window_data->validated_type),
+                                       hwc_data->target_hwc_window->lzpos);
+                       break;
+               case TDM_HWC_WIN_COMPOSITION_DEVICE:
+               case TDM_HWC_WIN_COMPOSITION_VIDEO:
+               case TDM_HWC_WIN_COMPOSITION_CURSOR:
+               case TDM_HWC_WIN_COMPOSITION_NONE:
+                       TDM_DBG(" window(%p) %s -> %s : lzpos(%d)", hwc_window_data,
+                                       _comp_to_str(hwc_window_data->client_type),
+                                       _comp_to_str(hwc_window_data->validated_type),
+                                       hwc_window_data->lzpos);
+                       break;
+               default:
+                       break;
                }
        }
 }