Commit 5874cfed authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'fbdev-fixes-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux

Pull fbdev fixes from Tomi Valkeinen:
 "Minor fixes for amba-clcd and video DT bindings"

* tag 'fbdev-fixes-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/tomba/linux:
  video: ARM CLCD: Fix color model capabilities for DT platforms
  video: fix composite video connector compatible string
parents 850ebc0c e4cf39ea
...@@ -2,7 +2,7 @@ Analog TV Connector ...@@ -2,7 +2,7 @@ Analog TV Connector
=================== ===================
Required properties: Required properties:
- compatible: "composite-connector" or "svideo-connector" - compatible: "composite-video-connector" or "svideo-connector"
Optional properties: Optional properties:
- label: a symbolic name for the connector - label: a symbolic name for the connector
...@@ -14,7 +14,7 @@ Example ...@@ -14,7 +14,7 @@ Example
------- -------
tv: connector { tv: connector {
compatible = "composite-connector"; compatible = "composite-video-connector";
label = "tv"; label = "tv";
port { port {
......
...@@ -93,7 +93,7 @@ isp1704: isp1704 { ...@@ -93,7 +93,7 @@ isp1704: isp1704 {
}; };
tv: connector { tv: connector {
compatible = "composite-connector"; compatible = "composite-video-connector";
label = "tv"; label = "tv";
port { port {
......
...@@ -639,9 +639,7 @@ static int clcdfb_of_init_tft_panel(struct clcd_fb *fb, u32 r0, u32 g0, u32 b0) ...@@ -639,9 +639,7 @@ static int clcdfb_of_init_tft_panel(struct clcd_fb *fb, u32 r0, u32 g0, u32 b0)
if (g0 != panels[i].g0) if (g0 != panels[i].g0)
continue; continue;
if (r0 == panels[i].r0 && b0 == panels[i].b0) if (r0 == panels[i].r0 && b0 == panels[i].b0)
fb->panel->caps = panels[i].caps & CLCD_CAP_RGB; fb->panel->caps = panels[i].caps;
if (r0 == panels[i].b0 && b0 == panels[i].r0)
fb->panel->caps = panels[i].caps & CLCD_CAP_BGR;
} }
return fb->panel->caps ? 0 : -EINVAL; return fb->panel->caps ? 0 : -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment