projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a695a9
)
drm/panel: simple: Fix a couple of physical sizes
author
Thierry Reding
<treding@nvidia.com>
Fri, 10 Jun 2016 13:33:13 +0000
(15:33 +0200)
committer
Thierry Reding
<treding@nvidia.com>
Fri, 10 Jun 2016 13:33:13 +0000
(15:33 +0200)
Both the Innolux ZJ070NA-01P and Samsung LTN101NT05 were listing the
horizontal and vertical resolutions in the size.width and size.height
fields, whereas they should contain the physical dimensions of the
panel.
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/panel/panel-simple.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/gpu/drm/panel/panel-simple.c
b/drivers/gpu/drm/panel/panel-simple.c
index 3a7bdf1c842b8f2b3ee9215a5a542dc7f76e3ab5..0e7c676913c6cef38cd3e54d9949aace969d1077 100644
(file)
--- a/
drivers/gpu/drm/panel/panel-simple.c
+++ b/
drivers/gpu/drm/panel/panel-simple.c
@@
-964,8
+964,8
@@
static const struct panel_desc innolux_zj070na_01p = {
.num_modes = 1,
.bpc = 6,
.size = {
- .width = 1
02
4,
- .height =
60
0,
+ .width = 1
5
4,
+ .height =
9
0,
},
};
@@
-1242,8
+1242,8
@@
static const struct panel_desc samsung_ltn101nt05 = {
.num_modes = 1,
.bpc = 6,
.size = {
- .width =
1024
,
- .height =
600
,
+ .width =
223
,
+ .height =
125
,
},
};