All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <5108C298.1000500@gmail.com>

diff --git a/a/1.txt b/N1/1.txt
index 2879bd2..fc748d7 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -5,7 +5,7 @@ On 01/30/2013 11:02 AM, Alexandre Courbot wrote:
 > A "nvidia,panel" property is added to the output node of the Tegra DC
 > that references the panel connected to a given output.
 > 
-> Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
+> Signed-off-by: Alexandre Courbot <acourbot-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
 > ---
 [...]
 > diff --git a/drivers/gpu/drm/tegra/drm.h b/drivers/gpu/drm/tegra/drm.h
@@ -49,7 +49,7 @@ many variables with name "drm/connector/output/encoder"... :)
 > +		if (!pnode)
 > +			break;
 > +
-> +		if (entity->dev && entity->dev->of_node = pnode) {
+> +		if (entity->dev && entity->dev->of_node == pnode) {
 > +			dev_dbg(output->dev, "connecting panel\n");
 > +			output->output = display_entity_get(entity);
 > +			display_entity_connect(&output->this, output->output);
@@ -116,7 +116,7 @@ DSI...).
 Set "display_notifier.dev" to NULL makes we have to compare with every
 display entity, just like what you do in "display_notify_callback":
 
-entity->dev && entity->dev->of_node = pnode
+entity->dev && entity->dev->of_node == pnode
 
 So can we get the "struct device *" of panel here? Seems currently the
 "of" framework doesn't allow "device_node -> device".
diff --git a/a/content_digest b/N1/content_digest
index 36fcd17..90fb2c0 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,9 +1,9 @@
  "ref\01359514939-15653-1-git-send-email-acourbot@nvidia.com\0"
  "ref\01359514939-15653-4-git-send-email-acourbot@nvidia.com\0"
  "ref\01359514939-15653-4-git-send-email-acourbot-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org\0"
- "From\0Mark Zhang <nvmarkzhang@gmail.com>\0"
+ "From\0Mark Zhang <nvmarkzhang-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\0"
  "Subject\0Re: [RFC 3/4] drm: tegra: use the Common Display Framework\0"
- "Date\0Wed, 30 Jan 2013 06:50:00 +0000\0"
+ "Date\0Wed, 30 Jan 2013 14:50:00 +0800\0"
  "To\0Alexandre Courbot <acourbot-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>\0"
  "Cc\0Laurent Pinchart <laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>"
   Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
@@ -22,7 +22,7 @@
  "> A \"nvidia,panel\" property is added to the output node of the Tegra DC\n"
  "> that references the panel connected to a given output.\n"
  "> \n"
- "> Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>\n"
+ "> Signed-off-by: Alexandre Courbot <acourbot-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>\n"
  "> ---\n"
  "[...]\n"
  "> diff --git a/drivers/gpu/drm/tegra/drm.h b/drivers/gpu/drm/tegra/drm.h\n"
@@ -66,7 +66,7 @@
  "> +\t\tif (!pnode)\n"
  "> +\t\t\tbreak;\n"
  "> +\n"
- "> +\t\tif (entity->dev && entity->dev->of_node = pnode) {\n"
+ "> +\t\tif (entity->dev && entity->dev->of_node == pnode) {\n"
  "> +\t\t\tdev_dbg(output->dev, \"connecting panel\\n\");\n"
  "> +\t\t\toutput->output = display_entity_get(entity);\n"
  "> +\t\t\tdisplay_entity_connect(&output->this, output->output);\n"
@@ -133,7 +133,7 @@
  "Set \"display_notifier.dev\" to NULL makes we have to compare with every\n"
  "display entity, just like what you do in \"display_notify_callback\":\n"
  "\n"
- "entity->dev && entity->dev->of_node = pnode\n"
+ "entity->dev && entity->dev->of_node == pnode\n"
  "\n"
  "So can we get the \"struct device *\" of panel here? Seems currently the\n"
  "\"of\" framework doesn't allow \"device_node -> device\".\n"
@@ -161,4 +161,4 @@
  ">  \t\tgpio_free(output->hpd_gpio);\n"
  >
 
-15f41415181b091a5d60817b4c315a90c78273ea77a797d3d5d012d263739ead
+c2505a3f20acb3c0b3d8a8a61535b3a4e17f3c95962ca290bed92571da17a3ea

diff --git a/a/1.txt b/N2/1.txt
index 2879bd2..688601d 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -49,7 +49,7 @@ many variables with name "drm/connector/output/encoder"... :)
 > +		if (!pnode)
 > +			break;
 > +
-> +		if (entity->dev && entity->dev->of_node = pnode) {
+> +		if (entity->dev && entity->dev->of_node == pnode) {
 > +			dev_dbg(output->dev, "connecting panel\n");
 > +			output->output = display_entity_get(entity);
 > +			display_entity_connect(&output->this, output->output);
@@ -116,7 +116,7 @@ DSI...).
 Set "display_notifier.dev" to NULL makes we have to compare with every
 display entity, just like what you do in "display_notify_callback":
 
-entity->dev && entity->dev->of_node = pnode
+entity->dev && entity->dev->of_node == pnode
 
 So can we get the "struct device *" of panel here? Seems currently the
 "of" framework doesn't allow "device_node -> device".
diff --git a/a/content_digest b/N2/content_digest
index 36fcd17..9257c3d 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,18 +1,17 @@
  "ref\01359514939-15653-1-git-send-email-acourbot@nvidia.com\0"
  "ref\01359514939-15653-4-git-send-email-acourbot@nvidia.com\0"
- "ref\01359514939-15653-4-git-send-email-acourbot-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org\0"
  "From\0Mark Zhang <nvmarkzhang@gmail.com>\0"
  "Subject\0Re: [RFC 3/4] drm: tegra: use the Common Display Framework\0"
- "Date\0Wed, 30 Jan 2013 06:50:00 +0000\0"
- "To\0Alexandre Courbot <acourbot-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>\0"
- "Cc\0Laurent Pinchart <laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>"
-  Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org>
-  Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
-  Mark Zhang <markz-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
-  linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  linux-fbdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
- " gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org\0"
+ "Date\0Wed, 30 Jan 2013 14:50:00 +0800\0"
+ "To\0Alexandre Courbot <acourbot@nvidia.com>\0"
+ "Cc\0Laurent Pinchart <laurent.pinchart@ideasonboard.com>"
+  Thierry Reding <thierry.reding@avionic-design.de>
+  Stephen Warren <swarren@wwwdotorg.org>
+  Mark Zhang <markz@nvidia.com>
+  linux-kernel@vger.kernel.org
+  linux-fbdev@vger.kernel.org
+  linux-tegra@vger.kernel.org
+ " gnurou@gmail.com\0"
  "\00:1\0"
  "b\0"
  "On 01/30/2013 11:02 AM, Alexandre Courbot wrote:\n"
@@ -66,7 +65,7 @@
  "> +\t\tif (!pnode)\n"
  "> +\t\t\tbreak;\n"
  "> +\n"
- "> +\t\tif (entity->dev && entity->dev->of_node = pnode) {\n"
+ "> +\t\tif (entity->dev && entity->dev->of_node == pnode) {\n"
  "> +\t\t\tdev_dbg(output->dev, \"connecting panel\\n\");\n"
  "> +\t\t\toutput->output = display_entity_get(entity);\n"
  "> +\t\t\tdisplay_entity_connect(&output->this, output->output);\n"
@@ -133,7 +132,7 @@
  "Set \"display_notifier.dev\" to NULL makes we have to compare with every\n"
  "display entity, just like what you do in \"display_notify_callback\":\n"
  "\n"
- "entity->dev && entity->dev->of_node = pnode\n"
+ "entity->dev && entity->dev->of_node == pnode\n"
  "\n"
  "So can we get the \"struct device *\" of panel here? Seems currently the\n"
  "\"of\" framework doesn't allow \"device_node -> device\".\n"
@@ -161,4 +160,4 @@
  ">  \t\tgpio_free(output->hpd_gpio);\n"
  >
 
-15f41415181b091a5d60817b4c315a90c78273ea77a797d3d5d012d263739ead
+b2d714bb10c678d6712525b1fe1bb2bbdc7a05910793545af8beb6c3360afac8

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.