Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 371622
b: refs/heads/master
c: 5f46c33
h: refs/heads/master
v: v3
  • Loading branch information
Sachin Kamat authored and Inki Dae committed Apr 29, 2013
1 parent aa00d17 commit 3c55e34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b9047b8d2e4863749934fef6e8809d71b6c540c2
refs/heads/master: 5f46c333f9522938ed3c54fe9d7ee2b61e41ad2f
10 changes: 4 additions & 6 deletions trunk/drivers/gpu/drm/exynos/exynos_hdmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 3c55e34

Please sign in to comment.