All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <001401d3f1a2$c7328850$559798f0$@codeaurora.org>

diff --git a/a/1.txt b/N1/1.txt
index c276bb0..fef34d2 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -1,5 +1,6 @@
 OK, I think I found out the way. Would this be correct?
------------------------------------------------------------------------------------------------
+-------------------------------------------------------------------------=
+----------------------
 extern struct cpu_topology cpu_topology[NR_CPUS];
 
 static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
@@ -7,14 +8,15 @@ static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
 	unsigned cpu;
 
 	for_each_possible_cpu(cpu) {
-		if ((cluster == cpu_topology[cpu].cluster_id) &&
-			(0 == cpu_topology[cpu].core_id))
+		if ((cluster =3D=3D cpu_topology[cpu].cluster_id) &&
+			(0 =3D=3D cpu_topology[cpu].core_id))
 			return get_cpu_device(cpu);
 	}
 
 	return NULL;
 }
------------------------------------------------------------------------------------------------
+-------------------------------------------------------------------------=
+----------------------
 
 > -----Original Message-----
 > From: ilialin@codeaurora.org <ilialin@codeaurora.org>
@@ -43,13 +45,14 @@ static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
 > 'celster@codeaurora.org' <celster@codeaurora.org>;
 > 'tfinkel@codeaurora.org' <tfinkel@codeaurora.org>
 > Subject: RE: [PATCH] cpufreq: Add Kryo CPU scaling driver
-> 
-> 
-> 
+>=20
+>=20
+>=20
 > > -----Original Message-----
 > > From: Sudeep Holla <sudeep.holla@arm.com>
 > > Sent: Monday, May 21, 2018 16:05
-> > To: ilialin@codeaurora.org; mturquette@baylibre.com; sboyd@kernel.org;
+> > To: ilialin@codeaurora.org; mturquette@baylibre.com; =
+sboyd@kernel.org;
 > > robh@kernel.org; mark.rutland@arm.com; viresh.kumar@linaro.org;
 > > nm@ti.com; lgirdwood@gmail.com; broonie@kernel.org;
 > > andy.gross@linaro.org; david.brown@linaro.org;
@@ -74,7 +77,8 @@ static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
 > > >>> +#include <linux/init.h>
 > > >>> +#include <linux/kernel.h>
 > > >>> +#include <linux/module.h>
-> > >>> +#include <linux/nvmem-consumer.h> #include <linux/of.h> #include
+> > >>> +#include <linux/nvmem-consumer.h> #include <linux/of.h> =
+#include
 > > >>> +<linux/platform_device.h> #include <linux/pm_opp.h> #include
 > > >>> +<linux/slab.h> #include <linux/soc/qcom/smem.h>
 > > >>> +
@@ -92,73 +96,80 @@ static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
 > >
 > >
 > > That may be true and I am not that bothered about it. But assuming
-> > physical ordering from the logical cpu number is *incorrect* and will
+> > physical ordering from the logical cpu number is *incorrect* and =
+will
 > > break if kernel decides to change the allocation algorithm. Kernel
-> > provides no guarantee on that, so you need to depend on some physical
-> > ID or may be DT to achieve what your want. But the current code as it
+> > provides no guarantee on that, so you need to depend on some =
+physical
+> > ID or may be DT to achieve what your want. But the current code as =
+it
 > stands is wrong.
-> 
-> Got your point. In fact CPUs are numbered 0-3 and ordered into 2 clusters in
+>=20
+> Got your point. In fact CPUs are numbered 0-3 and ordered into 2 =
+clusters in
 > the DT:
-> 
+>=20
 > cpus {
-> 	#address-cells = <2>;
-> 	#size-cells = <0>;
-> 
+> 	#address-cells =3D <2>;
+> 	#size-cells =3D <0>;
+>=20
 > 	CPU0: cpu@0 {
 > 		...
-> 		reg = <0x0 0x0>;
+> 		reg =3D <0x0 0x0>;
 > 		...
 > 	};
-> 
+>=20
 > 	CPU1: cpu@1 {
 > 		...
-> 		reg = <0x0 0x1>;
+> 		reg =3D <0x0 0x1>;
 > 		...
 > 	};
-> 
+>=20
 > 	CPU2: cpu@100 {
 > 		...
-> 		reg = <0x0 0x100>;
+> 		reg =3D <0x0 0x100>;
 > 		...
 > 	};
-> 
+>=20
 > 	CPU3: cpu@101 {
 > 		...
-> 		reg = <0x0 0x101>;
+> 		reg =3D <0x0 0x101>;
 > 		...
 > 	};
-> 
+>=20
 > 	cpu-map {
 > 		cluster0 {
 > 			core0 {
-> 				cpu = <&CPU0>;
+> 				cpu =3D <&CPU0>;
 > 			};
-> 
+>=20
 > 			core1 {
-> 				cpu = <&CPU1>;
+> 				cpu =3D <&CPU1>;
 > 			};
 > 		};
-> 
+>=20
 > 		cluster1 {
 > 			core0 {
-> 				cpu = <&CPU2>;
+> 				cpu =3D <&CPU2>;
 > 			};
-> 
+>=20
 > 			core1 {
-> 				cpu = <&CPU3>;
+> 				cpu =3D <&CPU3>;
 > 			};
 > 		};
 > 	};
 > };
-> 
-> As far, as I understand, they are probed in the same order. However, to be
-> certain that the physical CPU is the one I intend to configure, I have to fetch
-> the device structure pointer for the cpu-map -> clusterX -> core0 -> cpu path.
+>=20
+> As far, as I understand, they are probed in the same order. However, =
+to be
+> certain that the physical CPU is the one I intend to configure, I have =
+to fetch
+> the device structure pointer for the cpu-map -> clusterX -> core0 -> =
+cpu path.
 > Could you suggest a kernel API to do that?
-> 
-> 
-> 
+>=20
+>=20
+>=20
 > >
 > > --
 > > Regards,
diff --git a/a/content_digest b/N1/content_digest
index 8a3da1f..616ae6d 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -7,35 +7,36 @@
  "Subject\0RE: [PATCH] cpufreq: Add Kryo CPU scaling driver\0"
  "Date\0Tue, 22 May 2018 10:59:07 +0300\0"
  "To\0'Sudeep Holla' <sudeep.holla@arm.com>"
-  mturquette@baylibre.com
-  sboyd@kernel.org
-  robh@kernel.org
-  mark.rutland@arm.com
-  viresh.kumar@linaro.org
-  nm@ti.com
-  lgirdwood@gmail.com
-  broonie@kernel.org
-  andy.gross@linaro.org
-  david.brown@linaro.org
-  catalin.marinas@arm.com
-  will.deacon@arm.com
-  rjw@rjwysocki.net
- " linux-clk@vger.kernel.org\0"
- "Cc\0devicetree@vger.kernel.org"
-  linux-kernel@vger.kernel.org
-  linux-pm@vger.kernel.org
-  linux-arm-msm@vger.kernel.org
-  linux-soc@vger.kernel.org
-  linux-arm-kernel@lists.infradead.org
-  rnayak@codeaurora.org
-  amit.kucheria@linaro.org
-  nicolas.dechesne@linaro.org
-  celster@codeaurora.org
- " tfinkel@codeaurora.org\0"
+  <mturquette@baylibre.com>
+  <sboyd@kernel.org>
+  <robh@kernel.org>
+  <mark.rutland@arm.com>
+  <viresh.kumar@linaro.org>
+  <nm@ti.com>
+  <lgirdwood@gmail.com>
+  <broonie@kernel.org>
+  <andy.gross@linaro.org>
+  <david.brown@linaro.org>
+  <catalin.marinas@arm.com>
+  <will.deacon@arm.com>
+  <rjw@rjwysocki.net>
+ " <linux-clk@vger.kernel.org>\0"
+ "Cc\0<devicetree@vger.kernel.org>"
+  <linux-kernel@vger.kernel.org>
+  <linux-pm@vger.kernel.org>
+  <linux-arm-msm@vger.kernel.org>
+  <linux-soc@vger.kernel.org>
+  <linux-arm-kernel@lists.infradead.org>
+  <rnayak@codeaurora.org>
+  <amit.kucheria@linaro.org>
+  <nicolas.dechesne@linaro.org>
+  <celster@codeaurora.org>
+ " <tfinkel@codeaurora.org>\0"
  "\00:1\0"
  "b\0"
  "OK, I think I found out the way. Would this be correct?\n"
- "-----------------------------------------------------------------------------------------------\n"
+ "-------------------------------------------------------------------------=\n"
+ "----------------------\n"
  "extern struct cpu_topology cpu_topology[NR_CPUS];\n"
  "\n"
  "static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)\n"
@@ -43,14 +44,15 @@
  "\tunsigned cpu;\n"
  "\n"
  "\tfor_each_possible_cpu(cpu) {\n"
- "\t\tif ((cluster == cpu_topology[cpu].cluster_id) &&\n"
- "\t\t\t(0 == cpu_topology[cpu].core_id))\n"
+ "\t\tif ((cluster =3D=3D cpu_topology[cpu].cluster_id) &&\n"
+ "\t\t\t(0 =3D=3D cpu_topology[cpu].core_id))\n"
  "\t\t\treturn get_cpu_device(cpu);\n"
  "\t}\n"
  "\n"
  "\treturn NULL;\n"
  "}\n"
- "-----------------------------------------------------------------------------------------------\n"
+ "-------------------------------------------------------------------------=\n"
+ "----------------------\n"
  "\n"
  "> -----Original Message-----\n"
  "> From: ilialin@codeaurora.org <ilialin@codeaurora.org>\n"
@@ -79,13 +81,14 @@
  "> 'celster@codeaurora.org' <celster@codeaurora.org>;\n"
  "> 'tfinkel@codeaurora.org' <tfinkel@codeaurora.org>\n"
  "> Subject: RE: [PATCH] cpufreq: Add Kryo CPU scaling driver\n"
- "> \n"
- "> \n"
- "> \n"
+ ">=20\n"
+ ">=20\n"
+ ">=20\n"
  "> > -----Original Message-----\n"
  "> > From: Sudeep Holla <sudeep.holla@arm.com>\n"
  "> > Sent: Monday, May 21, 2018 16:05\n"
- "> > To: ilialin@codeaurora.org; mturquette@baylibre.com; sboyd@kernel.org;\n"
+ "> > To: ilialin@codeaurora.org; mturquette@baylibre.com; =\n"
+ "sboyd@kernel.org;\n"
  "> > robh@kernel.org; mark.rutland@arm.com; viresh.kumar@linaro.org;\n"
  "> > nm@ti.com; lgirdwood@gmail.com; broonie@kernel.org;\n"
  "> > andy.gross@linaro.org; david.brown@linaro.org;\n"
@@ -110,7 +113,8 @@
  "> > >>> +#include <linux/init.h>\n"
  "> > >>> +#include <linux/kernel.h>\n"
  "> > >>> +#include <linux/module.h>\n"
- "> > >>> +#include <linux/nvmem-consumer.h> #include <linux/of.h> #include\n"
+ "> > >>> +#include <linux/nvmem-consumer.h> #include <linux/of.h> =\n"
+ "#include\n"
  "> > >>> +<linux/platform_device.h> #include <linux/pm_opp.h> #include\n"
  "> > >>> +<linux/slab.h> #include <linux/soc/qcom/smem.h>\n"
  "> > >>> +\n"
@@ -128,76 +132,83 @@
  "> >\n"
  "> >\n"
  "> > That may be true and I am not that bothered about it. But assuming\n"
- "> > physical ordering from the logical cpu number is *incorrect* and will\n"
+ "> > physical ordering from the logical cpu number is *incorrect* and =\n"
+ "will\n"
  "> > break if kernel decides to change the allocation algorithm. Kernel\n"
- "> > provides no guarantee on that, so you need to depend on some physical\n"
- "> > ID or may be DT to achieve what your want. But the current code as it\n"
+ "> > provides no guarantee on that, so you need to depend on some =\n"
+ "physical\n"
+ "> > ID or may be DT to achieve what your want. But the current code as =\n"
+ "it\n"
  "> stands is wrong.\n"
- "> \n"
- "> Got your point. In fact CPUs are numbered 0-3 and ordered into 2 clusters in\n"
+ ">=20\n"
+ "> Got your point. In fact CPUs are numbered 0-3 and ordered into 2 =\n"
+ "clusters in\n"
  "> the DT:\n"
- "> \n"
+ ">=20\n"
  "> cpus {\n"
- "> \t#address-cells = <2>;\n"
- "> \t#size-cells = <0>;\n"
- "> \n"
+ "> \t#address-cells =3D <2>;\n"
+ "> \t#size-cells =3D <0>;\n"
+ ">=20\n"
  "> \tCPU0: cpu@0 {\n"
  "> \t\t...\n"
- "> \t\treg = <0x0 0x0>;\n"
+ "> \t\treg =3D <0x0 0x0>;\n"
  "> \t\t...\n"
  "> \t};\n"
- "> \n"
+ ">=20\n"
  "> \tCPU1: cpu@1 {\n"
  "> \t\t...\n"
- "> \t\treg = <0x0 0x1>;\n"
+ "> \t\treg =3D <0x0 0x1>;\n"
  "> \t\t...\n"
  "> \t};\n"
- "> \n"
+ ">=20\n"
  "> \tCPU2: cpu@100 {\n"
  "> \t\t...\n"
- "> \t\treg = <0x0 0x100>;\n"
+ "> \t\treg =3D <0x0 0x100>;\n"
  "> \t\t...\n"
  "> \t};\n"
- "> \n"
+ ">=20\n"
  "> \tCPU3: cpu@101 {\n"
  "> \t\t...\n"
- "> \t\treg = <0x0 0x101>;\n"
+ "> \t\treg =3D <0x0 0x101>;\n"
  "> \t\t...\n"
  "> \t};\n"
- "> \n"
+ ">=20\n"
  "> \tcpu-map {\n"
  "> \t\tcluster0 {\n"
  "> \t\t\tcore0 {\n"
- "> \t\t\t\tcpu = <&CPU0>;\n"
+ "> \t\t\t\tcpu =3D <&CPU0>;\n"
  "> \t\t\t};\n"
- "> \n"
+ ">=20\n"
  "> \t\t\tcore1 {\n"
- "> \t\t\t\tcpu = <&CPU1>;\n"
+ "> \t\t\t\tcpu =3D <&CPU1>;\n"
  "> \t\t\t};\n"
  "> \t\t};\n"
- "> \n"
+ ">=20\n"
  "> \t\tcluster1 {\n"
  "> \t\t\tcore0 {\n"
- "> \t\t\t\tcpu = <&CPU2>;\n"
+ "> \t\t\t\tcpu =3D <&CPU2>;\n"
  "> \t\t\t};\n"
- "> \n"
+ ">=20\n"
  "> \t\t\tcore1 {\n"
- "> \t\t\t\tcpu = <&CPU3>;\n"
+ "> \t\t\t\tcpu =3D <&CPU3>;\n"
  "> \t\t\t};\n"
  "> \t\t};\n"
  "> \t};\n"
  "> };\n"
- "> \n"
- "> As far, as I understand, they are probed in the same order. However, to be\n"
- "> certain that the physical CPU is the one I intend to configure, I have to fetch\n"
- "> the device structure pointer for the cpu-map -> clusterX -> core0 -> cpu path.\n"
+ ">=20\n"
+ "> As far, as I understand, they are probed in the same order. However, =\n"
+ "to be\n"
+ "> certain that the physical CPU is the one I intend to configure, I have =\n"
+ "to fetch\n"
+ "> the device structure pointer for the cpu-map -> clusterX -> core0 -> =\n"
+ "cpu path.\n"
  "> Could you suggest a kernel API to do that?\n"
- "> \n"
- "> \n"
- "> \n"
+ ">=20\n"
+ ">=20\n"
+ ">=20\n"
  "> >\n"
  "> > --\n"
  "> > Regards,\n"
  > > Sudeep
 
-d0239b96e0a7f269559c5cf7ca87eeaa826c8fc7c59953cbb7ebbafbc53cdf15
+8f5611a20b1034bb515feccf05ca3c92431afccb1beddbc62f5d7fcfea85da38

diff --git a/a/1.txt b/N2/1.txt
index c276bb0..8301122 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -17,31 +17,31 @@ static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
 -----------------------------------------------------------------------------------------------
 
 > -----Original Message-----
-> From: ilialin@codeaurora.org <ilialin@codeaurora.org>
+> From: ilialin at codeaurora.org <ilialin@codeaurora.org>
 > Sent: Tuesday, May 22, 2018 09:56
-> To: 'Sudeep Holla' <sudeep.holla@arm.com>; 'mturquette@baylibre.com'
-> <mturquette@baylibre.com>; 'sboyd@kernel.org' <sboyd@kernel.org>;
-> 'robh@kernel.org' <robh@kernel.org>; 'mark.rutland@arm.com'
-> <mark.rutland@arm.com>; 'viresh.kumar@linaro.org'
-> <viresh.kumar@linaro.org>; 'nm@ti.com' <nm@ti.com>;
-> 'lgirdwood@gmail.com' <lgirdwood@gmail.com>; 'broonie@kernel.org'
-> <broonie@kernel.org>; 'andy.gross@linaro.org' <andy.gross@linaro.org>;
-> 'david.brown@linaro.org' <david.brown@linaro.org>;
-> 'catalin.marinas@arm.com' <catalin.marinas@arm.com>;
-> 'will.deacon@arm.com' <will.deacon@arm.com>; 'rjw@rjwysocki.net'
-> <rjw@rjwysocki.net>; 'linux-clk@vger.kernel.org' <linux-
-> clk@vger.kernel.org>
-> Cc: 'devicetree@vger.kernel.org' <devicetree@vger.kernel.org>; 'linux-
-> kernel@vger.kernel.org' <linux-kernel@vger.kernel.org>; 'linux-
-> pm@vger.kernel.org' <linux-pm@vger.kernel.org>; 'linux-arm-
-> msm@vger.kernel.org' <linux-arm-msm@vger.kernel.org>; 'linux-
-> soc@vger.kernel.org' <linux-soc@vger.kernel.org>; 'linux-arm-
-> kernel@lists.infradead.org' <linux-arm-kernel@lists.infradead.org>;
-> 'rnayak@codeaurora.org' <rnayak@codeaurora.org>;
-> 'amit.kucheria@linaro.org' <amit.kucheria@linaro.org>;
-> 'nicolas.dechesne@linaro.org' <nicolas.dechesne@linaro.org>;
-> 'celster@codeaurora.org' <celster@codeaurora.org>;
-> 'tfinkel@codeaurora.org' <tfinkel@codeaurora.org>
+> To: 'Sudeep Holla' <sudeep.holla@arm.com>; 'mturquette at baylibre.com'
+> <mturquette@baylibre.com>; 'sboyd at kernel.org' <sboyd@kernel.org>;
+> 'robh at kernel.org' <robh@kernel.org>; 'mark.rutland at arm.com'
+> <mark.rutland@arm.com>; 'viresh.kumar at linaro.org'
+> <viresh.kumar@linaro.org>; 'nm at ti.com' <nm@ti.com>;
+> 'lgirdwood at gmail.com' <lgirdwood@gmail.com>; 'broonie at kernel.org'
+> <broonie@kernel.org>; 'andy.gross at linaro.org' <andy.gross@linaro.org>;
+> 'david.brown at linaro.org' <david.brown@linaro.org>;
+> 'catalin.marinas at arm.com' <catalin.marinas@arm.com>;
+> 'will.deacon at arm.com' <will.deacon@arm.com>; 'rjw at rjwysocki.net'
+> <rjw@rjwysocki.net>; 'linux-clk at vger.kernel.org' <linux-
+> clk at vger.kernel.org>
+> Cc: 'devicetree at vger.kernel.org' <devicetree@vger.kernel.org>; 'linux-
+> kernel at vger.kernel.org' <linux-kernel@vger.kernel.org>; 'linux-
+> pm at vger.kernel.org' <linux-pm@vger.kernel.org>; 'linux-arm-
+> msm at vger.kernel.org' <linux-arm-msm@vger.kernel.org>; 'linux-
+> soc at vger.kernel.org' <linux-soc@vger.kernel.org>; 'linux-arm-
+> kernel at lists.infradead.org' <linux-arm-kernel@lists.infradead.org>;
+> 'rnayak at codeaurora.org' <rnayak@codeaurora.org>;
+> 'amit.kucheria at linaro.org' <amit.kucheria@linaro.org>;
+> 'nicolas.dechesne at linaro.org' <nicolas.dechesne@linaro.org>;
+> 'celster at codeaurora.org' <celster@codeaurora.org>;
+> 'tfinkel at codeaurora.org' <tfinkel@codeaurora.org>
 > Subject: RE: [PATCH] cpufreq: Add Kryo CPU scaling driver
 > 
 > 
@@ -49,23 +49,23 @@ static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
 > > -----Original Message-----
 > > From: Sudeep Holla <sudeep.holla@arm.com>
 > > Sent: Monday, May 21, 2018 16:05
-> > To: ilialin@codeaurora.org; mturquette@baylibre.com; sboyd@kernel.org;
-> > robh@kernel.org; mark.rutland@arm.com; viresh.kumar@linaro.org;
-> > nm@ti.com; lgirdwood@gmail.com; broonie@kernel.org;
-> > andy.gross@linaro.org; david.brown@linaro.org;
-> > catalin.marinas@arm.com; will.deacon@arm.com; rjw@rjwysocki.net;
-> > linux-clk@vger.kernel.org
-> > Cc: Sudeep Holla <sudeep.holla@arm.com>; devicetree@vger.kernel.org;
-> > linux-kernel@vger.kernel.org; linux-pm@vger.kernel.org; linux-arm-
-> > msm@vger.kernel.org; linux-soc@vger.kernel.org; linux-arm-
-> > kernel@lists.infradead.org; rnayak@codeaurora.org;
-> > amit.kucheria@linaro.org; nicolas.dechesne@linaro.org;
-> > celster@codeaurora.org; tfinkel@codeaurora.org
+> > To: ilialin at codeaurora.org; mturquette at baylibre.com; sboyd at kernel.org;
+> > robh at kernel.org; mark.rutland at arm.com; viresh.kumar at linaro.org;
+> > nm at ti.com; lgirdwood at gmail.com; broonie at kernel.org;
+> > andy.gross at linaro.org; david.brown at linaro.org;
+> > catalin.marinas at arm.com; will.deacon at arm.com; rjw at rjwysocki.net;
+> > linux-clk at vger.kernel.org
+> > Cc: Sudeep Holla <sudeep.holla@arm.com>; devicetree at vger.kernel.org;
+> > linux-kernel at vger.kernel.org; linux-pm at vger.kernel.org; linux-arm-
+> > msm at vger.kernel.org; linux-soc at vger.kernel.org; linux-arm-
+> > kernel at lists.infradead.org; rnayak at codeaurora.org;
+> > amit.kucheria at linaro.org; nicolas.dechesne at linaro.org;
+> > celster at codeaurora.org; tfinkel at codeaurora.org
 > > Subject: Re: [PATCH] cpufreq: Add Kryo CPU scaling driver
 > >
 > >
 > >
-> > On 21/05/18 13:57, ilialin@codeaurora.org wrote:
+> > On 21/05/18 13:57, ilialin at codeaurora.org wrote:
 > > >
 > > [...]
 > >
@@ -105,25 +105,25 @@ static struct device *qcom_cpufreq_kryo_get_cluster_lead(int cluster)
 > 	#address-cells = <2>;
 > 	#size-cells = <0>;
 > 
-> 	CPU0: cpu@0 {
+> 	CPU0: cpu at 0 {
 > 		...
 > 		reg = <0x0 0x0>;
 > 		...
 > 	};
 > 
-> 	CPU1: cpu@1 {
+> 	CPU1: cpu at 1 {
 > 		...
 > 		reg = <0x0 0x1>;
 > 		...
 > 	};
 > 
-> 	CPU2: cpu@100 {
+> 	CPU2: cpu at 100 {
 > 		...
 > 		reg = <0x0 0x100>;
 > 		...
 > 	};
 > 
-> 	CPU3: cpu@101 {
+> 	CPU3: cpu at 101 {
 > 		...
 > 		reg = <0x0 0x101>;
 > 		...
diff --git a/a/content_digest b/N2/content_digest
index 8a3da1f..56774a1 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -3,35 +3,10 @@
  "ref\0153cc316-dcb5-972f-5a2f-c91fe0f6348b@arm.com\0"
  "ref\0000f01d3f103$3ff78ba0$bfe6a2e0$@codeaurora.org\0"
  "ref\02ace10bc-e1c4-2060-94d3-eb71e966ffbe@arm.com\0"
- "From\0<ilialin@codeaurora.org>\0"
- "Subject\0RE: [PATCH] cpufreq: Add Kryo CPU scaling driver\0"
+ "From\0ilialin@codeaurora.org (ilialin at codeaurora.org)\0"
+ "Subject\0[PATCH] cpufreq: Add Kryo CPU scaling driver\0"
  "Date\0Tue, 22 May 2018 10:59:07 +0300\0"
- "To\0'Sudeep Holla' <sudeep.holla@arm.com>"
-  mturquette@baylibre.com
-  sboyd@kernel.org
-  robh@kernel.org
-  mark.rutland@arm.com
-  viresh.kumar@linaro.org
-  nm@ti.com
-  lgirdwood@gmail.com
-  broonie@kernel.org
-  andy.gross@linaro.org
-  david.brown@linaro.org
-  catalin.marinas@arm.com
-  will.deacon@arm.com
-  rjw@rjwysocki.net
- " linux-clk@vger.kernel.org\0"
- "Cc\0devicetree@vger.kernel.org"
-  linux-kernel@vger.kernel.org
-  linux-pm@vger.kernel.org
-  linux-arm-msm@vger.kernel.org
-  linux-soc@vger.kernel.org
-  linux-arm-kernel@lists.infradead.org
-  rnayak@codeaurora.org
-  amit.kucheria@linaro.org
-  nicolas.dechesne@linaro.org
-  celster@codeaurora.org
- " tfinkel@codeaurora.org\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "OK, I think I found out the way. Would this be correct?\n"
@@ -53,31 +28,31 @@
  "-----------------------------------------------------------------------------------------------\n"
  "\n"
  "> -----Original Message-----\n"
- "> From: ilialin@codeaurora.org <ilialin@codeaurora.org>\n"
+ "> From: ilialin at codeaurora.org <ilialin@codeaurora.org>\n"
  "> Sent: Tuesday, May 22, 2018 09:56\n"
- "> To: 'Sudeep Holla' <sudeep.holla@arm.com>; 'mturquette@baylibre.com'\n"
- "> <mturquette@baylibre.com>; 'sboyd@kernel.org' <sboyd@kernel.org>;\n"
- "> 'robh@kernel.org' <robh@kernel.org>; 'mark.rutland@arm.com'\n"
- "> <mark.rutland@arm.com>; 'viresh.kumar@linaro.org'\n"
- "> <viresh.kumar@linaro.org>; 'nm@ti.com' <nm@ti.com>;\n"
- "> 'lgirdwood@gmail.com' <lgirdwood@gmail.com>; 'broonie@kernel.org'\n"
- "> <broonie@kernel.org>; 'andy.gross@linaro.org' <andy.gross@linaro.org>;\n"
- "> 'david.brown@linaro.org' <david.brown@linaro.org>;\n"
- "> 'catalin.marinas@arm.com' <catalin.marinas@arm.com>;\n"
- "> 'will.deacon@arm.com' <will.deacon@arm.com>; 'rjw@rjwysocki.net'\n"
- "> <rjw@rjwysocki.net>; 'linux-clk@vger.kernel.org' <linux-\n"
- "> clk@vger.kernel.org>\n"
- "> Cc: 'devicetree@vger.kernel.org' <devicetree@vger.kernel.org>; 'linux-\n"
- "> kernel@vger.kernel.org' <linux-kernel@vger.kernel.org>; 'linux-\n"
- "> pm@vger.kernel.org' <linux-pm@vger.kernel.org>; 'linux-arm-\n"
- "> msm@vger.kernel.org' <linux-arm-msm@vger.kernel.org>; 'linux-\n"
- "> soc@vger.kernel.org' <linux-soc@vger.kernel.org>; 'linux-arm-\n"
- "> kernel@lists.infradead.org' <linux-arm-kernel@lists.infradead.org>;\n"
- "> 'rnayak@codeaurora.org' <rnayak@codeaurora.org>;\n"
- "> 'amit.kucheria@linaro.org' <amit.kucheria@linaro.org>;\n"
- "> 'nicolas.dechesne@linaro.org' <nicolas.dechesne@linaro.org>;\n"
- "> 'celster@codeaurora.org' <celster@codeaurora.org>;\n"
- "> 'tfinkel@codeaurora.org' <tfinkel@codeaurora.org>\n"
+ "> To: 'Sudeep Holla' <sudeep.holla@arm.com>; 'mturquette at baylibre.com'\n"
+ "> <mturquette@baylibre.com>; 'sboyd at kernel.org' <sboyd@kernel.org>;\n"
+ "> 'robh at kernel.org' <robh@kernel.org>; 'mark.rutland at arm.com'\n"
+ "> <mark.rutland@arm.com>; 'viresh.kumar at linaro.org'\n"
+ "> <viresh.kumar@linaro.org>; 'nm at ti.com' <nm@ti.com>;\n"
+ "> 'lgirdwood at gmail.com' <lgirdwood@gmail.com>; 'broonie at kernel.org'\n"
+ "> <broonie@kernel.org>; 'andy.gross at linaro.org' <andy.gross@linaro.org>;\n"
+ "> 'david.brown at linaro.org' <david.brown@linaro.org>;\n"
+ "> 'catalin.marinas at arm.com' <catalin.marinas@arm.com>;\n"
+ "> 'will.deacon at arm.com' <will.deacon@arm.com>; 'rjw at rjwysocki.net'\n"
+ "> <rjw@rjwysocki.net>; 'linux-clk at vger.kernel.org' <linux-\n"
+ "> clk at vger.kernel.org>\n"
+ "> Cc: 'devicetree at vger.kernel.org' <devicetree@vger.kernel.org>; 'linux-\n"
+ "> kernel at vger.kernel.org' <linux-kernel@vger.kernel.org>; 'linux-\n"
+ "> pm at vger.kernel.org' <linux-pm@vger.kernel.org>; 'linux-arm-\n"
+ "> msm at vger.kernel.org' <linux-arm-msm@vger.kernel.org>; 'linux-\n"
+ "> soc at vger.kernel.org' <linux-soc@vger.kernel.org>; 'linux-arm-\n"
+ "> kernel at lists.infradead.org' <linux-arm-kernel@lists.infradead.org>;\n"
+ "> 'rnayak at codeaurora.org' <rnayak@codeaurora.org>;\n"
+ "> 'amit.kucheria at linaro.org' <amit.kucheria@linaro.org>;\n"
+ "> 'nicolas.dechesne at linaro.org' <nicolas.dechesne@linaro.org>;\n"
+ "> 'celster at codeaurora.org' <celster@codeaurora.org>;\n"
+ "> 'tfinkel at codeaurora.org' <tfinkel@codeaurora.org>\n"
  "> Subject: RE: [PATCH] cpufreq: Add Kryo CPU scaling driver\n"
  "> \n"
  "> \n"
@@ -85,23 +60,23 @@
  "> > -----Original Message-----\n"
  "> > From: Sudeep Holla <sudeep.holla@arm.com>\n"
  "> > Sent: Monday, May 21, 2018 16:05\n"
- "> > To: ilialin@codeaurora.org; mturquette@baylibre.com; sboyd@kernel.org;\n"
- "> > robh@kernel.org; mark.rutland@arm.com; viresh.kumar@linaro.org;\n"
- "> > nm@ti.com; lgirdwood@gmail.com; broonie@kernel.org;\n"
- "> > andy.gross@linaro.org; david.brown@linaro.org;\n"
- "> > catalin.marinas@arm.com; will.deacon@arm.com; rjw@rjwysocki.net;\n"
- "> > linux-clk@vger.kernel.org\n"
- "> > Cc: Sudeep Holla <sudeep.holla@arm.com>; devicetree@vger.kernel.org;\n"
- "> > linux-kernel@vger.kernel.org; linux-pm@vger.kernel.org; linux-arm-\n"
- "> > msm@vger.kernel.org; linux-soc@vger.kernel.org; linux-arm-\n"
- "> > kernel@lists.infradead.org; rnayak@codeaurora.org;\n"
- "> > amit.kucheria@linaro.org; nicolas.dechesne@linaro.org;\n"
- "> > celster@codeaurora.org; tfinkel@codeaurora.org\n"
+ "> > To: ilialin at codeaurora.org; mturquette at baylibre.com; sboyd at kernel.org;\n"
+ "> > robh at kernel.org; mark.rutland at arm.com; viresh.kumar at linaro.org;\n"
+ "> > nm at ti.com; lgirdwood at gmail.com; broonie at kernel.org;\n"
+ "> > andy.gross at linaro.org; david.brown at linaro.org;\n"
+ "> > catalin.marinas at arm.com; will.deacon at arm.com; rjw at rjwysocki.net;\n"
+ "> > linux-clk at vger.kernel.org\n"
+ "> > Cc: Sudeep Holla <sudeep.holla@arm.com>; devicetree at vger.kernel.org;\n"
+ "> > linux-kernel at vger.kernel.org; linux-pm at vger.kernel.org; linux-arm-\n"
+ "> > msm at vger.kernel.org; linux-soc at vger.kernel.org; linux-arm-\n"
+ "> > kernel at lists.infradead.org; rnayak at codeaurora.org;\n"
+ "> > amit.kucheria at linaro.org; nicolas.dechesne at linaro.org;\n"
+ "> > celster at codeaurora.org; tfinkel at codeaurora.org\n"
  "> > Subject: Re: [PATCH] cpufreq: Add Kryo CPU scaling driver\n"
  "> >\n"
  "> >\n"
  "> >\n"
- "> > On 21/05/18 13:57, ilialin@codeaurora.org wrote:\n"
+ "> > On 21/05/18 13:57, ilialin at codeaurora.org wrote:\n"
  "> > >\n"
  "> > [...]\n"
  "> >\n"
@@ -141,25 +116,25 @@
  "> \t#address-cells = <2>;\n"
  "> \t#size-cells = <0>;\n"
  "> \n"
- "> \tCPU0: cpu@0 {\n"
+ "> \tCPU0: cpu at 0 {\n"
  "> \t\t...\n"
  "> \t\treg = <0x0 0x0>;\n"
  "> \t\t...\n"
  "> \t};\n"
  "> \n"
- "> \tCPU1: cpu@1 {\n"
+ "> \tCPU1: cpu at 1 {\n"
  "> \t\t...\n"
  "> \t\treg = <0x0 0x1>;\n"
  "> \t\t...\n"
  "> \t};\n"
  "> \n"
- "> \tCPU2: cpu@100 {\n"
+ "> \tCPU2: cpu at 100 {\n"
  "> \t\t...\n"
  "> \t\treg = <0x0 0x100>;\n"
  "> \t\t...\n"
  "> \t};\n"
  "> \n"
- "> \tCPU3: cpu@101 {\n"
+ "> \tCPU3: cpu at 101 {\n"
  "> \t\t...\n"
  "> \t\treg = <0x0 0x101>;\n"
  "> \t\t...\n"
@@ -200,4 +175,4 @@
  "> > Regards,\n"
  > > Sudeep
 
-d0239b96e0a7f269559c5cf7ca87eeaa826c8fc7c59953cbb7ebbafbc53cdf15
+3cb6ffacda5028342bb59d85b3f96b22e92f8d24c3c2b504439255307056fa43

diff --git a/a/content_digest b/N3/content_digest
index 8a3da1f..12b5294 100644
--- a/a/content_digest
+++ b/N3/content_digest
@@ -7,31 +7,31 @@
  "Subject\0RE: [PATCH] cpufreq: Add Kryo CPU scaling driver\0"
  "Date\0Tue, 22 May 2018 10:59:07 +0300\0"
  "To\0'Sudeep Holla' <sudeep.holla@arm.com>"
-  mturquette@baylibre.com
-  sboyd@kernel.org
-  robh@kernel.org
-  mark.rutland@arm.com
-  viresh.kumar@linaro.org
-  nm@ti.com
-  lgirdwood@gmail.com
-  broonie@kernel.org
-  andy.gross@linaro.org
-  david.brown@linaro.org
-  catalin.marinas@arm.com
-  will.deacon@arm.com
-  rjw@rjwysocki.net
- " linux-clk@vger.kernel.org\0"
- "Cc\0devicetree@vger.kernel.org"
-  linux-kernel@vger.kernel.org
-  linux-pm@vger.kernel.org
-  linux-arm-msm@vger.kernel.org
-  linux-soc@vger.kernel.org
-  linux-arm-kernel@lists.infradead.org
-  rnayak@codeaurora.org
-  amit.kucheria@linaro.org
-  nicolas.dechesne@linaro.org
-  celster@codeaurora.org
- " tfinkel@codeaurora.org\0"
+  <mturquette@baylibre.com>
+  <sboyd@kernel.org>
+  <robh@kernel.org>
+  <mark.rutland@arm.com>
+  <viresh.kumar@linaro.org>
+  <nm@ti.com>
+  <lgirdwood@gmail.com>
+  <broonie@kernel.org>
+  <andy.gross@linaro.org>
+  <david.brown@linaro.org>
+  <catalin.marinas@arm.com>
+  <will.deacon@arm.com>
+  <rjw@rjwysocki.net>
+ " <linux-clk@vger.kernel.org>\0"
+ "Cc\0<devicetree@vger.kernel.org>"
+  <linux-kernel@vger.kernel.org>
+  <linux-pm@vger.kernel.org>
+  <linux-arm-msm@vger.kernel.org>
+  <linux-soc@vger.kernel.org>
+  <linux-arm-kernel@lists.infradead.org>
+  <rnayak@codeaurora.org>
+  <amit.kucheria@linaro.org>
+  <nicolas.dechesne@linaro.org>
+  <celster@codeaurora.org>
+ " <tfinkel@codeaurora.org>\0"
  "\00:1\0"
  "b\0"
  "OK, I think I found out the way. Would this be correct?\n"
@@ -200,4 +200,4 @@
  "> > Regards,\n"
  > > Sudeep
 
-d0239b96e0a7f269559c5cf7ca87eeaa826c8fc7c59953cbb7ebbafbc53cdf15
+fec73c6de56e9f0db7ddbb792284745800fb4c7eff595d8ccc04afda84a52c38

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.