All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20150722095501.GA15809@leverpostej>

diff --git a/a/1.txt b/N1/1.txt
index 992e325..e3684dc 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -24,7 +24,7 @@ On Mon, Jun 08, 2015 at 11:39:55AM +0100, Sudeep Holla wrote:
 > Cc: Liviu Dudau <Liviu.Dudau@arm.com>
 > Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
 > Cc: Jon Medhurst (Tixy) <tixy@linaro.org>
-> Cc: devicetree@vger.kernel.org
+> Cc: devicetree at vger.kernel.org
 > ---
 >  Documentation/devicetree/bindings/arm/arm,scpi.txt | 156 +++++++++++++++++++++
 >  1 file changed, 156 insertions(+)
@@ -129,7 +129,7 @@ s/identifyng/identifying/
 > +
 > +Example:
 > +
-> +sram: sram@50000000 {
+> +sram: sram at 50000000 {
 > +	compatible = "arm,juno-sram-ns", "mmio-sram";
 > +	reg = <0x0 0x50000000 0x0 0x10000>;
 > +
@@ -137,23 +137,23 @@ s/identifyng/identifying/
 > +	#size-cells = <1>;
 > +	ranges = <0 0x0 0x50000000 0x10000>;
 > +
-> +	cpu_scp_lpri: scp-shmem@0 {
+> +	cpu_scp_lpri: scp-shmem at 0 {
 > +		compatible = "arm,juno-scp-shmem";
 > +		reg = <0x0 0x200>;
 > +	};
 > +
-> +	cpu_scp_hpri: scp-shmem@200 {
+> +	cpu_scp_hpri: scp-shmem at 200 {
 > +		compatible = "arm,juno-scp-shmem";
 > +		reg = <0x200 0x200>;
 > +	};
 > +};
 > +
-> +mailbox: mailbox0@40000000 {
+> +mailbox: mailbox0 at 40000000 {
 > +	....
 > +	#mbox-cells = <1>;
 > +};
 > +
-> +scpi_protocol: scpi@2e000000 {
+> +scpi_protocol: scpi at 2e000000 {
 > +	compatible = "arm,scpi";
 > +	mboxes = <&mailbox 0 &mailbox 1>;
 > +	shmem = <&cpu_scp_lpri &cpu_scp_hpri>;
@@ -161,13 +161,13 @@ s/identifyng/identifying/
 > +	clocks {
 > +		compatible = "arm,scpi-clocks";
 > +
-> +		scpi_dvfs: scpi_clocks@0 {
+> +		scpi_dvfs: scpi_clocks at 0 {
 > +			compatible = "arm,scpi-dvfs-clocks";
 > +			#clock-cells = <1>;
 > +			clock-indices = <0>, <1>, <2>;
 > +			clock-output-names = "vbig", "vlittle", "vgpu";
 > +		};
-> +		scpi_clk: scpi_clocks@3 {
+> +		scpi_clk: scpi_clocks at 3 {
 > +			compatible = "arm,scpi-variable-clocks";
 > +			#clock-cells = <1>;
 > +			clock-indices = <3>, <4>;
@@ -176,14 +176,14 @@ s/identifyng/identifying/
 > +	};
 > +};
 > +
-> +cpu@0 {
+> +cpu at 0 {
 > +	...
 > +	reg = <0 0>;
 > +	clocks = <&scpi_dvfs 0>;
 > +	clock-names = "vbig";
 > +};
 > +
-> +hdlcd@7ff60000 {
+> +hdlcd at 7ff60000 {
 > +	...
 > +	reg = <0 0x7ff60000 0 0x1000>;
 > +	clocks = <&scpi_clk 1>;
@@ -195,12 +195,12 @@ s/identifyng/identifying/
 > +and 2 as clock-indices. scpi_clk has 2 output clocks namely: pxlclk0 and
 > +pxlclk1 with 3 and 4 as clock-indices.
 > +
-> +The first consumer in the example is cpu@0 and it has vbig as input clock.
+> +The first consumer in the example is cpu at 0 and it has vbig as input clock.
 > +The index '0' in the clock specifier here points to the first entry in the
 > +output clocks of scpi_dvfs for which clock_id asrequired by the firmware
 > +is 0.
 > +
-> +Similarly the second example is hdlcd@7ff60000 and it has pxlclk0 as input
+> +Similarly the second example is hdlcd at 7ff60000 and it has pxlclk0 as input
 > +clock. The index '1' in the clock specifier here points to the second entry
 > +in the output clocks of scpi_clocks for which clock_id as required by the
 > +firmware is 4.
diff --git a/a/content_digest b/N1/content_digest
index 8890522..de28ca4 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,22 +1,9 @@
  "ref\01433760002-24120-1-git-send-email-sudeep.holla@arm.com\0"
  "ref\01433760002-24120-2-git-send-email-sudeep.holla@arm.com\0"
- "From\0Mark Rutland <mark.rutland@arm.com>\0"
- "Subject\0Re: [PATCH v4 1/8] Documentation: add DT binding for ARM System Control and Power Interface(SCPI) protocol\0"
+ "From\0mark.rutland@arm.com (Mark Rutland)\0"
+ "Subject\0[PATCH v4 1/8] Documentation: add DT binding for ARM System Control and Power Interface(SCPI) protocol\0"
  "Date\0Wed, 22 Jul 2015 10:55:01 +0100\0"
- "To\0Sudeep Holla <sudeep.holla@arm.com>\0"
- "Cc\0linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>"
-  linux-pm@vger.kernel.org <linux-pm@vger.kernel.org>
-  linux-clk@vger.kernel.org <linux-clk@vger.kernel.org>
-  linux-arm-kernel@lists.infradead.org <linux-arm-kernel@lists.infradead.org>
-  Liviu Dudau <Liviu.Dudau@arm.com>
-  Lorenzo Pieralisi <Lorenzo.Pieralisi@arm.com>
-  Jon Medhurst (Tixy) <tixy@linaro.org>
-  Arnd Bergmann <arnd@arndb.de>
-  Kevin Hilman <khilman@kernel.org>
-  Olof Johansson <olof@lixom.net>
-  Rob Herring <robh+dt@kernel.org>
-  Jassi Brar <jassisinghbrar@gmail.com>
- " devicetree@vger.kernel.org <devicetree@vger.kernel.org>\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "Hi,\n"
@@ -45,7 +32,7 @@
  "> Cc: Liviu Dudau <Liviu.Dudau@arm.com>\n"
  "> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>\n"
  "> Cc: Jon Medhurst (Tixy) <tixy@linaro.org>\n"
- "> Cc: devicetree@vger.kernel.org\n"
+ "> Cc: devicetree at vger.kernel.org\n"
  "> ---\n"
  ">  Documentation/devicetree/bindings/arm/arm,scpi.txt | 156 +++++++++++++++++++++\n"
  ">  1 file changed, 156 insertions(+)\n"
@@ -150,7 +137,7 @@
  "> +\n"
  "> +Example:\n"
  "> +\n"
- "> +sram: sram@50000000 {\n"
+ "> +sram: sram at 50000000 {\n"
  "> +\tcompatible = \"arm,juno-sram-ns\", \"mmio-sram\";\n"
  "> +\treg = <0x0 0x50000000 0x0 0x10000>;\n"
  "> +\n"
@@ -158,23 +145,23 @@
  "> +\t#size-cells = <1>;\n"
  "> +\tranges = <0 0x0 0x50000000 0x10000>;\n"
  "> +\n"
- "> +\tcpu_scp_lpri: scp-shmem@0 {\n"
+ "> +\tcpu_scp_lpri: scp-shmem at 0 {\n"
  "> +\t\tcompatible = \"arm,juno-scp-shmem\";\n"
  "> +\t\treg = <0x0 0x200>;\n"
  "> +\t};\n"
  "> +\n"
- "> +\tcpu_scp_hpri: scp-shmem@200 {\n"
+ "> +\tcpu_scp_hpri: scp-shmem at 200 {\n"
  "> +\t\tcompatible = \"arm,juno-scp-shmem\";\n"
  "> +\t\treg = <0x200 0x200>;\n"
  "> +\t};\n"
  "> +};\n"
  "> +\n"
- "> +mailbox: mailbox0@40000000 {\n"
+ "> +mailbox: mailbox0 at 40000000 {\n"
  "> +\t....\n"
  "> +\t#mbox-cells = <1>;\n"
  "> +};\n"
  "> +\n"
- "> +scpi_protocol: scpi@2e000000 {\n"
+ "> +scpi_protocol: scpi at 2e000000 {\n"
  "> +\tcompatible = \"arm,scpi\";\n"
  "> +\tmboxes = <&mailbox 0 &mailbox 1>;\n"
  "> +\tshmem = <&cpu_scp_lpri &cpu_scp_hpri>;\n"
@@ -182,13 +169,13 @@
  "> +\tclocks {\n"
  "> +\t\tcompatible = \"arm,scpi-clocks\";\n"
  "> +\n"
- "> +\t\tscpi_dvfs: scpi_clocks@0 {\n"
+ "> +\t\tscpi_dvfs: scpi_clocks at 0 {\n"
  "> +\t\t\tcompatible = \"arm,scpi-dvfs-clocks\";\n"
  "> +\t\t\t#clock-cells = <1>;\n"
  "> +\t\t\tclock-indices = <0>, <1>, <2>;\n"
  "> +\t\t\tclock-output-names = \"vbig\", \"vlittle\", \"vgpu\";\n"
  "> +\t\t};\n"
- "> +\t\tscpi_clk: scpi_clocks@3 {\n"
+ "> +\t\tscpi_clk: scpi_clocks at 3 {\n"
  "> +\t\t\tcompatible = \"arm,scpi-variable-clocks\";\n"
  "> +\t\t\t#clock-cells = <1>;\n"
  "> +\t\t\tclock-indices = <3>, <4>;\n"
@@ -197,14 +184,14 @@
  "> +\t};\n"
  "> +};\n"
  "> +\n"
- "> +cpu@0 {\n"
+ "> +cpu at 0 {\n"
  "> +\t...\n"
  "> +\treg = <0 0>;\n"
  "> +\tclocks = <&scpi_dvfs 0>;\n"
  "> +\tclock-names = \"vbig\";\n"
  "> +};\n"
  "> +\n"
- "> +hdlcd@7ff60000 {\n"
+ "> +hdlcd at 7ff60000 {\n"
  "> +\t...\n"
  "> +\treg = <0 0x7ff60000 0 0x1000>;\n"
  "> +\tclocks = <&scpi_clk 1>;\n"
@@ -216,12 +203,12 @@
  "> +and 2 as clock-indices. scpi_clk has 2 output clocks namely: pxlclk0 and\n"
  "> +pxlclk1 with 3 and 4 as clock-indices.\n"
  "> +\n"
- "> +The first consumer in the example is cpu@0 and it has vbig as input clock.\n"
+ "> +The first consumer in the example is cpu at 0 and it has vbig as input clock.\n"
  "> +The index '0' in the clock specifier here points to the first entry in the\n"
  "> +output clocks of scpi_dvfs for which clock_id asrequired by the firmware\n"
  "> +is 0.\n"
  "> +\n"
- "> +Similarly the second example is hdlcd@7ff60000 and it has pxlclk0 as input\n"
+ "> +Similarly the second example is hdlcd at 7ff60000 and it has pxlclk0 as input\n"
  "> +clock. The index '1' in the clock specifier here points to the second entry\n"
  "> +in the output clocks of scpi_clocks for which clock_id as required by the\n"
  "> +firmware is 4.\n"
@@ -237,4 +224,4 @@
  "Thanks,\n"
  Mark.
 
-7293377e5de9a9251f3d8a32f71fbdfccf1bbb8e276695f87fd5b53a9f278720
+22bda7aeaf3e091507d61451628950495e5e01dbf7f4405925ac5d915e0cc4cf

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.