drm/exynos: Remove unnecessary braces in exynos_hdmi.c
authorSachin Kamat <sachin.kamat@linaro.org>
Fri, 26 Apr 2013 05:59:00 +0000 (11:29 +0530)
committerInki Dae <inki.dae@samsung.com>
Mon, 29 Apr 2013 05:40:17 +0000 (14:40 +0900)
Silences the following checkpatch warning:
WARNING: braces {} are not necessary for any arm of this statement

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos_hdmi.c

index 93b70e9..bbfc384 100644 (file)
@@ -1373,11 +1373,10 @@ static void hdmiphy_conf_apply(struct hdmi_context *hdata)
                return;
        }
 
-       if (hdata->type == HDMI_TYPE13) {
+       if (hdata->type == HDMI_TYPE13)
                hdmiphy_data = hdmiphy_v13_configs[i].conf;
-       } else {
+       else
                hdmiphy_data = hdmiphy_v14_configs[i].conf;
-       }
 
        memcpy(buffer, hdmiphy_data, 32);
        ret = i2c_master_send(hdata->hdmiphy_port, buffer, 32);
@@ -1653,11 +1652,10 @@ static void hdmi_mode_set(void *ctx, void *mode)
                m->vrefresh, (m->flags & DRM_MODE_FLAG_INTERLACE) ?
                "INTERLACED" : "PROGERESSIVE");
 
-       if (hdata->type == HDMI_TYPE13) {
+       if (hdata->type == HDMI_TYPE13)
                hdmi_v13_mode_set(hdata, mode);
-       } else {
+       else
                hdmi_v14_mode_set(hdata, mode);
-       }
 }
 
 static void hdmi_get_max_resol(void *ctx, unsigned int *width,