All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <522BAED9.4020301@gmail.com>

diff --git a/a/1.txt b/N1/1.txt
index f68bf49..d327bb7 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -101,7 +101,7 @@ panels and controllers.
 > +
 > +Example:
 > +
-> +			clcd@1f0000 {
+> +			clcd at 1f0000 {
 > +				compatible = "arm,pl111", "arm,primecell";
 > +				reg =<0x1f0000 0x1000>;
 > +				interrupts =<14>;
@@ -245,7 +245,7 @@ manually in the remove() callback ?
 > +#endif
 > +
 > +	if (of_property_read_u32_array(node, "panel-dimensions",
-> +			dimensions, 2) = 0) {
+> +			dimensions, 2) == 0) {
 > +		fb->panel->width = dimensions[0];
 > +		fb->panel->height = dimensions[1];
 > +	} else {
@@ -254,7 +254,7 @@ manually in the remove() callback ?
 > +	}
 > +
 > +	panel_type = of_get_property(node, "panel-type",&len);
-> +	if (strncmp(panel_type, "tft", len) = 0)
+> +	if (strncmp(panel_type, "tft", len) == 0)
 > +		return clcdfb_of_get_tft_panel(node, fb->panel);
 > +	else
 > +		return -EINVAL;
diff --git a/a/content_digest b/N1/content_digest
index 5851e54..452854f 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,7 +1,7 @@
  "ref\01378488201-21146-1-git-send-email-pawel.moll@arm.com\0"
- "From\0Sylwester Nawrocki <sylvester.nawrocki@gmail.com>\0"
- "Subject\0Re: [PATCH 1/2] video: ARM CLCD: Add DT support\0"
- "Date\0Sat, 07 Sep 2013 22:55:21 +0000\0"
+ "From\0sylvester.nawrocki@gmail.com (Sylwester Nawrocki)\0"
+ "Subject\0[PATCH 1/2] video: ARM CLCD: Add DT support\0"
+ "Date\0Sun, 08 Sep 2013 00:55:21 +0200\0"
  "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
@@ -108,7 +108,7 @@
  "> +\n"
  "> +Example:\n"
  "> +\n"
- "> +\t\t\tclcd@1f0000 {\n"
+ "> +\t\t\tclcd at 1f0000 {\n"
  "> +\t\t\t\tcompatible = \"arm,pl111\", \"arm,primecell\";\n"
  "> +\t\t\t\treg =<0x1f0000 0x1000>;\n"
  "> +\t\t\t\tinterrupts =<14>;\n"
@@ -252,7 +252,7 @@
  "> +#endif\n"
  "> +\n"
  "> +\tif (of_property_read_u32_array(node, \"panel-dimensions\",\n"
- "> +\t\t\tdimensions, 2) = 0) {\n"
+ "> +\t\t\tdimensions, 2) == 0) {\n"
  "> +\t\tfb->panel->width = dimensions[0];\n"
  "> +\t\tfb->panel->height = dimensions[1];\n"
  "> +\t} else {\n"
@@ -261,7 +261,7 @@
  "> +\t}\n"
  "> +\n"
  "> +\tpanel_type = of_get_property(node, \"panel-type\",&len);\n"
- "> +\tif (strncmp(panel_type, \"tft\", len) = 0)\n"
+ "> +\tif (strncmp(panel_type, \"tft\", len) == 0)\n"
  "> +\t\treturn clcdfb_of_get_tft_panel(node, fb->panel);\n"
  "> +\telse\n"
  "> +\t\treturn -EINVAL;\n"
@@ -303,4 +303,4 @@
  "Thanks,\n"
  Sylwester
 
-37151a42825694639d6d01df3fb48335056037c0dffac67a93b9ffa25f848fb5
+215178b099cb8abaa91612746d2d7cc98b695159e666c1081d7795c5b9b8273d

diff --git a/a/1.txt b/N2/1.txt
index f68bf49..806b9d6 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -245,7 +245,7 @@ manually in the remove() callback ?
 > +#endif
 > +
 > +	if (of_property_read_u32_array(node, "panel-dimensions",
-> +			dimensions, 2) = 0) {
+> +			dimensions, 2) == 0) {
 > +		fb->panel->width = dimensions[0];
 > +		fb->panel->height = dimensions[1];
 > +	} else {
@@ -254,7 +254,7 @@ manually in the remove() callback ?
 > +	}
 > +
 > +	panel_type = of_get_property(node, "panel-type",&len);
-> +	if (strncmp(panel_type, "tft", len) = 0)
+> +	if (strncmp(panel_type, "tft", len) == 0)
 > +		return clcdfb_of_get_tft_panel(node, fb->panel);
 > +	else
 > +		return -EINVAL;
diff --git a/a/content_digest b/N2/content_digest
index 5851e54..88b1a5c 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,8 +1,19 @@
  "ref\01378488201-21146-1-git-send-email-pawel.moll@arm.com\0"
  "From\0Sylwester Nawrocki <sylvester.nawrocki@gmail.com>\0"
  "Subject\0Re: [PATCH 1/2] video: ARM CLCD: Add DT support\0"
- "Date\0Sat, 07 Sep 2013 22:55:21 +0000\0"
- "To\0linux-arm-kernel@lists.infradead.org\0"
+ "Date\0Sun, 08 Sep 2013 00:55:21 +0200\0"
+ "To\0Pawel Moll <pawel.moll@arm.com>\0"
+ "Cc\0Mark Rutland <mark.rutland@arm.com>"
+  devicetree@vger.kernel.org
+  linux-fbdev@vger.kernel.org
+  Russell King <linux@arm.linux.org.uk>
+  Ian Campbell <ijc+devicetree@hellion.org.uk>
+  Stephen Warren <swarren@wwwdotorg.org>
+  Rob Herring <rob.herring@calxeda.com>
+  Tomi Valkeinen <tomi.valkeinen@ti.com>
+  Arnd Bergmann <arnd.bergmann@linaro.org>
+  Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
+ " linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "Hi,\n"
@@ -252,7 +263,7 @@
  "> +#endif\n"
  "> +\n"
  "> +\tif (of_property_read_u32_array(node, \"panel-dimensions\",\n"
- "> +\t\t\tdimensions, 2) = 0) {\n"
+ "> +\t\t\tdimensions, 2) == 0) {\n"
  "> +\t\tfb->panel->width = dimensions[0];\n"
  "> +\t\tfb->panel->height = dimensions[1];\n"
  "> +\t} else {\n"
@@ -261,7 +272,7 @@
  "> +\t}\n"
  "> +\n"
  "> +\tpanel_type = of_get_property(node, \"panel-type\",&len);\n"
- "> +\tif (strncmp(panel_type, \"tft\", len) = 0)\n"
+ "> +\tif (strncmp(panel_type, \"tft\", len) == 0)\n"
  "> +\t\treturn clcdfb_of_get_tft_panel(node, fb->panel);\n"
  "> +\telse\n"
  "> +\t\treturn -EINVAL;\n"
@@ -303,4 +314,4 @@
  "Thanks,\n"
  Sylwester
 
-37151a42825694639d6d01df3fb48335056037c0dffac67a93b9ffa25f848fb5
+7479e19bacf6df1b1fbdb98a992294d6db852a19f90503ce38627c40d2738424

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.