Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 331771
b: refs/heads/master
c: 53bd555
h: refs/heads/master
i:
  331769: d85ccd5
  331767: 695c855
v: v3
  • Loading branch information
Sachin Kamat authored and Inki Dae committed Oct 4, 2012
1 parent bd0eb17 commit 35dda2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: 291257cf4cb0da1e32b672b88e73d22d845c8f93
refs/heads/master: 53bd5556547d72fb9c572d66c3b7bfe0f096972b
6 changes: 5 additions & 1 deletion trunk/drivers/gpu/drm/exynos/exynos_drm_connector.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,12 @@ static int exynos_drm_connector_get_modes(struct drm_connector *connector)
count = drm_add_edid_modes(connector, edid);
kfree(edid);
} else {
struct drm_display_mode *mode = drm_mode_create(connector->dev);
struct exynos_drm_panel_info *panel;
struct drm_display_mode *mode = drm_mode_create(connector->dev);
if (!mode) {
DRM_ERROR("failed to create a new display mode.\n");
return 0;
}

if (display_ops->get_panel)
panel = display_ops->get_panel(manager->dev);
Expand Down

0 comments on commit 35dda2b

Please sign in to comment.