All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <54D1F338.4080005@atmel.com>

diff --git a/a/1.txt b/N1/1.txt
index c76fb57..e023dd3 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -151,15 +151,15 @@ which include PMECC/NFC-hw registers.
 >> }
 > Well, that's more someting like:
 >
-> ebi@xxxx {
+> ebi at xxxx {
 > 	pinctrl-0 = <&ebi_data_bus_pins &ebi_addr_bus_pins
 > 		     &ebi_nand_cs0_pin &ebi_nand_rb0_pin ...>;
 >
-> 	nand@0,xxxx {
+> 	nand at 0,xxxx {
 > 		/* ../ */
 > 	};
 >
-> 	nand@1,xxxx {
+> 	nand at 1,xxxx {
 > 		/* ../ */
 > 	}
 > }
@@ -186,11 +186,11 @@ There should be a sync issue to solve. or maybe I miss something?
 > Flash Controller).
 > How about this representation instead ?
 >
-> nfc@xxxxx {
+> nfc at xxxxx {
 > 	nand-chips = <&nand0 &nand1>;
 > }
 
-This should be ok, but this nfc@xxxxx should be a logic block. As the 
+This should be ok, but this nfc at xxxxx should be a logic block. As the 
 real NFC hardware only appeared since SAMA5 chips.
 And we can disabled it. Without the real hardware NFC the nand should 
 also works well.
@@ -201,7 +201,7 @@ also works well.
 Okay, first I prefer to remove the atmel_nand_nfc driver, the work that 
 be done in atmel_nand_nfc_probe() function will move to atmel_nand_probe().
 The dt should looks like:
-         nand0: nand@80000000 {
+         nand0: nand at 80000000 {
              compatible = "atmel,sama5d4-nand", "atmel,at91rm9200-nand";
              #address-cells = <1>;
              #size-cells = <1>;
@@ -231,7 +231,7 @@ some dt properties like atmel,enable-nfc.
 
 Then we can make use of EBI/SMC node,
 
-nfc@xxxxx {
+nfc at xxxxx {
      compatible = "atmel,sama5d4-nand", "atmel,at91rm9200-nand";
      #address-cells = <1>;
      #size-cells = <1>;
diff --git a/a/content_digest b/N1/content_digest
index c935df6..9bba8cf 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -4,25 +4,10 @@
  "ref\020150202104236.649f99ad@bbrezillon\0"
  "ref\054D08AD7.3050209@atmel.com\0"
  "ref\020150203103736.3bcc222e@bbrezillon\0"
- "From\0Josh Wu <josh.wu@atmel.com>\0"
- "Subject\0Re: [PATCH 2/4] mtd: nand: atmel: Update DT documentation after splitting NFC and NAND\0"
+ "From\0josh.wu@atmel.com (Josh Wu)\0"
+ "Subject\0[PATCH 2/4] mtd: nand: atmel: Update DT documentation after splitting NFC and NAND\0"
  "Date\0Wed, 4 Feb 2015 18:23:52 +0800\0"
- "To\0Boris Brezillon <boris.brezillon@free-electrons.com>\0"
- "Cc\0Mark Rutland <mark.rutland@arm.com>"
-  devicetree@vger.kernel.org
-  Pawel Moll <pawel.moll@arm.com>
-  Ian Campbell <ijc+devicetree@hellion.org.uk>
-  David Woodhouse <dwmw2@infradead.org>
-  Nicolas Ferre <nicolas.ferre@atmel.com>
-  linux-kernel@vger.kernel.org
-  Rob Herring <robh+dt@kernel.org>
-  linux-mtd@lists.infradead.org
-  Kumar Gala <galak@codeaurora.org>
-  Alexandre Belloni <alexandre.belloni@free-electrons.com>
-  Brian Norris <computersforpeace@gmail.com>
-  Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
-  Andrew Victor <linux@maxim.org.za>
- " linux-arm-kernel@lists.infradead.org\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "Hi, Boris\n"
@@ -178,15 +163,15 @@
  ">> }\n"
  "> Well, that's more someting like:\n"
  ">\n"
- "> ebi@xxxx {\n"
+ "> ebi at xxxx {\n"
  "> \tpinctrl-0 = <&ebi_data_bus_pins &ebi_addr_bus_pins\n"
  "> \t\t     &ebi_nand_cs0_pin &ebi_nand_rb0_pin ...>;\n"
  ">\n"
- "> \tnand@0,xxxx {\n"
+ "> \tnand at 0,xxxx {\n"
  "> \t\t/* ../ */\n"
  "> \t};\n"
  ">\n"
- "> \tnand@1,xxxx {\n"
+ "> \tnand at 1,xxxx {\n"
  "> \t\t/* ../ */\n"
  "> \t}\n"
  "> }\n"
@@ -213,11 +198,11 @@
  "> Flash Controller).\n"
  "> How about this representation instead ?\n"
  ">\n"
- "> nfc@xxxxx {\n"
+ "> nfc at xxxxx {\n"
  "> \tnand-chips = <&nand0 &nand1>;\n"
  "> }\n"
  "\n"
- "This should be ok, but this nfc@xxxxx should be a logic block. As the \n"
+ "This should be ok, but this nfc at xxxxx should be a logic block. As the \n"
  "real NFC hardware only appeared since SAMA5 chips.\n"
  "And we can disabled it. Without the real hardware NFC the nand should \n"
  "also works well.\n"
@@ -228,7 +213,7 @@
  "Okay, first I prefer to remove the atmel_nand_nfc driver, the work that \n"
  "be done in atmel_nand_nfc_probe() function will move to atmel_nand_probe().\n"
  "The dt should looks like:\n"
- "         nand0: nand@80000000 {\n"
+ "         nand0: nand at 80000000 {\n"
  "             compatible = \"atmel,sama5d4-nand\", \"atmel,at91rm9200-nand\";\n"
  "             #address-cells = <1>;\n"
  "             #size-cells = <1>;\n"
@@ -258,7 +243,7 @@
  "\n"
  "Then we can make use of EBI/SMC node,\n"
  "\n"
- "nfc@xxxxx {\n"
+ "nfc at xxxxx {\n"
  "     compatible = \"atmel,sama5d4-nand\", \"atmel,at91rm9200-nand\";\n"
  "     #address-cells = <1>;\n"
  "     #size-cells = <1>;\n"
@@ -303,4 +288,4 @@
  "Best Regards,\n"
  Josh Wu
 
-db88b93dc09b96fc2115c3855ab62c5731531f0b54da8c5ee39f7a559105eef7
+13c15e60da8816a39b4d7cc7731a603a9bcc433061ab478b136251e1764d17c3

diff --git a/a/1.txt b/N2/1.txt
index c76fb57..64f2dcd 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -5,7 +5,7 @@ for my suggestion.
 
 On 2/3/2015 5:37 PM, Boris Brezillon wrote:
 > On Tue, 3 Feb 2015 16:46:15 +0800
-> Josh Wu <josh.wu@atmel.com> wrote:
+> Josh Wu <josh.wu-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org> wrote:
 >
 >> Hi, Boris, Brian
 >>
@@ -13,7 +13,7 @@ On 2/3/2015 5:37 PM, Boris Brezillon wrote:
 >>> Hi Brian,
 >>>
 >>> On Sun, 1 Feb 2015 23:57:37 -0800
->>> Brian Norris <computersforpeace@gmail.com> wrote:
+>>> Brian Norris <computersforpeace-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
 >>>
 >>>> Hi Boris,
 >>>>
@@ -275,3 +275,7 @@ but it's just a draft for us to discuss.
 >
 Best Regards,
 Josh Wu
+--
+To unsubscribe from this list: send the line "unsubscribe devicetree" in
+the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
+More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff --git a/a/content_digest b/N2/content_digest
index c935df6..48eae3c 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -4,25 +4,25 @@
  "ref\020150202104236.649f99ad@bbrezillon\0"
  "ref\054D08AD7.3050209@atmel.com\0"
  "ref\020150203103736.3bcc222e@bbrezillon\0"
- "From\0Josh Wu <josh.wu@atmel.com>\0"
+ "From\0Josh Wu <josh.wu-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>\0"
  "Subject\0Re: [PATCH 2/4] mtd: nand: atmel: Update DT documentation after splitting NFC and NAND\0"
  "Date\0Wed, 4 Feb 2015 18:23:52 +0800\0"
- "To\0Boris Brezillon <boris.brezillon@free-electrons.com>\0"
- "Cc\0Mark Rutland <mark.rutland@arm.com>"
-  devicetree@vger.kernel.org
-  Pawel Moll <pawel.moll@arm.com>
-  Ian Campbell <ijc+devicetree@hellion.org.uk>
-  David Woodhouse <dwmw2@infradead.org>
-  Nicolas Ferre <nicolas.ferre@atmel.com>
-  linux-kernel@vger.kernel.org
-  Rob Herring <robh+dt@kernel.org>
-  linux-mtd@lists.infradead.org
-  Kumar Gala <galak@codeaurora.org>
-  Alexandre Belloni <alexandre.belloni@free-electrons.com>
-  Brian Norris <computersforpeace@gmail.com>
-  Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
-  Andrew Victor <linux@maxim.org.za>
- " linux-arm-kernel@lists.infradead.org\0"
+ "To\0Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>\0"
+ "Cc\0Brian Norris <computersforpeace-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>"
+  David Woodhouse <dwmw2-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
+  linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
+  Nicolas Ferre <nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
+  Jean-Christophe Plagniol-Villard <plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
+  Alexandre Belloni <alexandre.belloni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
+  Andrew Victor <linux-PelNFVqkFnVyf+4FbqDuWQ@public.gmane.org>
+  Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
+  Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>
+  Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
+  Ian Campbell <ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>
+  Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
+  devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
+  linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
+ " linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\0"
  "\00:1\0"
  "b\0"
  "Hi, Boris\n"
@@ -32,7 +32,7 @@
  "\n"
  "On 2/3/2015 5:37 PM, Boris Brezillon wrote:\n"
  "> On Tue, 3 Feb 2015 16:46:15 +0800\n"
- "> Josh Wu <josh.wu@atmel.com> wrote:\n"
+ "> Josh Wu <josh.wu-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org> wrote:\n"
  ">\n"
  ">> Hi, Boris, Brian\n"
  ">>\n"
@@ -40,7 +40,7 @@
  ">>> Hi Brian,\n"
  ">>>\n"
  ">>> On Sun, 1 Feb 2015 23:57:37 -0800\n"
- ">>> Brian Norris <computersforpeace@gmail.com> wrote:\n"
+ ">>> Brian Norris <computersforpeace-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:\n"
  ">>>\n"
  ">>>> Hi Boris,\n"
  ">>>>\n"
@@ -301,6 +301,10 @@
  ">\n"
  ">\n"
  "Best Regards,\n"
- Josh Wu
+ "Josh Wu\n"
+ "--\n"
+ "To unsubscribe from this list: send the line \"unsubscribe devicetree\" in\n"
+ "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n"
+ More majordomo info at  http://vger.kernel.org/majordomo-info.html
 
-db88b93dc09b96fc2115c3855ab62c5731531f0b54da8c5ee39f7a559105eef7
+6acf795fcf60f55c4cc900ac22d9dea3a6b3978e17d19f4bb44ed838c728c255

diff --git a/a/content_digest b/N3/content_digest
index c935df6..28a55c8 100644
--- a/a/content_digest
+++ b/N3/content_digest
@@ -8,21 +8,21 @@
  "Subject\0Re: [PATCH 2/4] mtd: nand: atmel: Update DT documentation after splitting NFC and NAND\0"
  "Date\0Wed, 4 Feb 2015 18:23:52 +0800\0"
  "To\0Boris Brezillon <boris.brezillon@free-electrons.com>\0"
- "Cc\0Mark Rutland <mark.rutland@arm.com>"
-  devicetree@vger.kernel.org
-  Pawel Moll <pawel.moll@arm.com>
-  Ian Campbell <ijc+devicetree@hellion.org.uk>
+ "Cc\0Brian Norris <computersforpeace@gmail.com>"
   David Woodhouse <dwmw2@infradead.org>
+  <linux-mtd@lists.infradead.org>
   Nicolas Ferre <nicolas.ferre@atmel.com>
-  linux-kernel@vger.kernel.org
-  Rob Herring <robh+dt@kernel.org>
-  linux-mtd@lists.infradead.org
-  Kumar Gala <galak@codeaurora.org>
-  Alexandre Belloni <alexandre.belloni@free-electrons.com>
-  Brian Norris <computersforpeace@gmail.com>
   Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
+  Alexandre Belloni <alexandre.belloni@free-electrons.com>
   Andrew Victor <linux@maxim.org.za>
- " linux-arm-kernel@lists.infradead.org\0"
+  Rob Herring <robh+dt@kernel.org>
+  Pawel Moll <pawel.moll@arm.com>
+  Mark Rutland <mark.rutland@arm.com>
+  Ian Campbell <ijc+devicetree@hellion.org.uk>
+  Kumar Gala <galak@codeaurora.org>
+  <devicetree@vger.kernel.org>
+  <linux-arm-kernel@lists.infradead.org>
+ " <linux-kernel@vger.kernel.org>\0"
  "\00:1\0"
  "b\0"
  "Hi, Boris\n"
@@ -303,4 +303,4 @@
  "Best Regards,\n"
  Josh Wu
 
-db88b93dc09b96fc2115c3855ab62c5731531f0b54da8c5ee39f7a559105eef7
+a379b6cdcbd3bf4a325bf7f468aa66b63d4286be24d50b78e95cbb642cf2e95b

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.