All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <54A25696.80608@compulab.co.il>

diff --git a/a/1.txt b/N1/1.txt
index e171c2e..4948c29 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -56,7 +56,7 @@ U-Boot.
 > Isn't this ranges property redundant as it will be overridden by the board specific dts?
 >
 >> +
->> +	nand@0,0 {
+>> +	nand at 0,0 {
 >> +		reg = <0 0 4>;	/* CS0, offset 0, IO size 4 */
 >> +		nand-bus-width = <8>;
 >> +		gpmc,device-width = <1>;
@@ -101,23 +101,23 @@ not a reason for reformatting the NAND.
 >> +		#address-cells = <1>;
 >> +		#size-cells = <1>;
 >> +
->> +		partition@0 {
+>> +		partition at 0 {
 >> +			label = "xloader";
 >> +			reg = <0 0x80000>;
 >> +		};
->> +		partition@0x80000 {
+>> +		partition at 0x80000 {
 >> +			label = "uboot";
 >> +			reg = <0x80000 0x1e0000>;
 >> +		};
->> +		partition@0x260000 {
+>> +		partition at 0x260000 {
 >> +			label = "uboot environment";
 >> +			reg = <0x260000 0x40000>;
 >> +		};
->> +		partition@0x2a0000 {
+>> +		partition at 0x2a0000 {
 >> +			label = "linux";
 >> +			reg = <0x2a0000 0x400000>;
 >> +		};
->> +		partition@0x6a0000 {
+>> +		partition at 0x6a0000 {
 >> +			label = "rootfs";
 >> +			reg = <0x6a0000 0x1f880000>;
 >> +		};
@@ -152,7 +152,7 @@ not connect additional device to the bus).
 This is the point of Igor's comment to the previous patch version.
 
 >>
->>   	smsc1: ethernet@gpmc {
+>>   	smsc1: ethernet at gpmc {
 >>   		compatible = "smsc,lan9221", "smsc,lan9115";
 >> diff --git a/arch/arm/boot/dts/omap3-sbc-t3517.dts b/arch/arm/boot/dts/omap3-sbc-t3517.dts
 >> index 1798653..c2d5c28 100644
diff --git a/a/content_digest b/N1/content_digest
index 44ad80b..a334fdb 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,16 +1,10 @@
  "ref\054A00BD6.8010507@compulab.co.il\0"
  "ref\01419777049-25271-1-git-send-email-lifshitz@compulab.co.il\0"
  "ref\054A151F2.9010904@ti.com\0"
- "From\0Dmitry Lifshitz <lifshitz@compulab.co.il>\0"
- "Subject\0Re: [PATCH v2] ARM: dts: cm-t3x: add NAND support\0"
+ "From\0lifshitz@compulab.co.il (Dmitry Lifshitz)\0"
+ "Subject\0[PATCH v2] ARM: dts: cm-t3x: add NAND support\0"
  "Date\0Tue, 30 Dec 2014 09:39:02 +0200\0"
- "To\0Roger Quadros <rogerq@ti.com>\0"
- "Cc\0Beno\303\256t Cousson <bcousson@baylibre.com>"
-  Tony Lindgren <tony@atomide.com>
-  linux-omap@vger.kernel.org
-  devicetree@vger.kernel.org
-  linux-arm-kernel@lists.infradead.org
- " grinberg@compulab.co.il\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "Hi Roger,\n"
@@ -71,7 +65,7 @@
  "> Isn't this ranges property redundant as it will be overridden by the board specific dts?\n"
  ">\n"
  ">> +\n"
- ">> +\tnand@0,0 {\n"
+ ">> +\tnand at 0,0 {\n"
  ">> +\t\treg = <0 0 4>;\t/* CS0, offset 0, IO size 4 */\n"
  ">> +\t\tnand-bus-width = <8>;\n"
  ">> +\t\tgpmc,device-width = <1>;\n"
@@ -116,23 +110,23 @@
  ">> +\t\t#address-cells = <1>;\n"
  ">> +\t\t#size-cells = <1>;\n"
  ">> +\n"
- ">> +\t\tpartition@0 {\n"
+ ">> +\t\tpartition at 0 {\n"
  ">> +\t\t\tlabel = \"xloader\";\n"
  ">> +\t\t\treg = <0 0x80000>;\n"
  ">> +\t\t};\n"
- ">> +\t\tpartition@0x80000 {\n"
+ ">> +\t\tpartition at 0x80000 {\n"
  ">> +\t\t\tlabel = \"uboot\";\n"
  ">> +\t\t\treg = <0x80000 0x1e0000>;\n"
  ">> +\t\t};\n"
- ">> +\t\tpartition@0x260000 {\n"
+ ">> +\t\tpartition at 0x260000 {\n"
  ">> +\t\t\tlabel = \"uboot environment\";\n"
  ">> +\t\t\treg = <0x260000 0x40000>;\n"
  ">> +\t\t};\n"
- ">> +\t\tpartition@0x2a0000 {\n"
+ ">> +\t\tpartition at 0x2a0000 {\n"
  ">> +\t\t\tlabel = \"linux\";\n"
  ">> +\t\t\treg = <0x2a0000 0x400000>;\n"
  ">> +\t\t};\n"
- ">> +\t\tpartition@0x6a0000 {\n"
+ ">> +\t\tpartition at 0x6a0000 {\n"
  ">> +\t\t\tlabel = \"rootfs\";\n"
  ">> +\t\t\treg = <0x6a0000 0x1f880000>;\n"
  ">> +\t\t};\n"
@@ -167,7 +161,7 @@
  "This is the point of Igor's comment to the previous patch version.\n"
  "\n"
  ">>\n"
- ">>   \tsmsc1: ethernet@gpmc {\n"
+ ">>   \tsmsc1: ethernet at gpmc {\n"
  ">>   \t\tcompatible = \"smsc,lan9221\", \"smsc,lan9115\";\n"
  ">> diff --git a/arch/arm/boot/dts/omap3-sbc-t3517.dts b/arch/arm/boot/dts/omap3-sbc-t3517.dts\n"
  ">> index 1798653..c2d5c28 100644\n"
@@ -232,4 +226,4 @@
  "\n"
  Dmitry
 
-a8d47e06f0736ebfb7dd997d33c330150269d842e801863d4e4380cfe1733b16
+e345471a7fbeaaf5f114b437084af6a81aca094be624cc1cb30e6855bb562cf6

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.