diff options
author | Akshay Bhat <akshay.bhat@timesys.com> | 2016-03-01 18:06:54 -0500 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2016-03-02 17:05:01 +0100 |
commit | 2e8c5eb9ef938a069fd9586769787021b2541698 (patch) | |
tree | 08c3da6486cb94ec19295149afea38b9b54d31ac /drivers | |
parent | 97b6ae50e05c533b6455e304d36bdf2bb5604ee6 (diff) | |
download | blackbird-op-linux-2e8c5eb9ef938a069fd9586769787021b2541698.tar.gz blackbird-op-linux-2e8c5eb9ef938a069fd9586769787021b2541698.zip |
drm/panel: simple: Fix g121x1_l03 hsync/vsync polarity
Set hsync/vsync to active low for g121x1_l03 panel to match the
recommended setting in the datasheet.
Signed-off-by: Akshay Bhat <akshay.bhat@timesys.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/panel/panel-simple.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index f88a631c43ab..7a65cc849355 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -847,6 +847,7 @@ static const struct drm_display_mode innolux_g121x1_l03_mode = { .vsync_end = 768 + 38 + 1, .vtotal = 768 + 38 + 1 + 0, .vrefresh = 60, + .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC, }; static const struct panel_desc innolux_g121x1_l03 = { |