All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20181021150137.2e2ec279@archlinux>

diff --git a/a/1.txt b/N1/1.txt
index 975e5f4..3fe2497 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -2,7 +2,7 @@ On Fri, 19 Oct 2018 10:47:45 +0300
 Stefan Popa <stefan.popa@analog.com> wrote:
 
 > Add support for Analog Devices AD7124 4-channels and 8-channels ADC.
->=20
+> 
 > Signed-off-by: Stefan Popa <stefan.popa@analog.com>
 
 I'm not certain on how to do reg for the channels.  Input from
@@ -18,16 +18,13 @@ Jonathan
 > ---
 > Changes in v2:
 > 	- Nothing changed.
->=20
->  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++=
-++++++
+> 
+>  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++++++++
 >  MAINTAINERS                                        |  1 +
 >  2 files changed, 97 insertions(+)
->  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.=
-txt
->=20
-> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/D=
-ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
+>  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt
+> 
+> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > new file mode 100644
 > index 0000000..77a7b92
 > --- /dev/null
@@ -44,8 +41,7 @@ ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > +		see: Documentation/devicetree/bindings/clock/clock-bindings.txt
 > +	- clock-names: Must be "mclk".
 > +	- interrupts: IRQ line for the ADC
-> +		see: Documentation/devicetree/bindings/interrupt-controller/interrupts=
-.txt
+> +		see: Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
 > +
 > +	- adi,channels: List of external channels connected to the ADC:
 > +	  Required properties:
@@ -67,8 +63,8 @@ ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > +			* adi,bipolar: If set the channel is used in bipolar mode.
 > +			* adi,reference-select: Select the reference source to use when
 > +			  converting on the the specific channel. Valid values are:
-> +			  0: REFIN1(+)/REFIN1(=E2=88=92).
-> +			  1: REFIN2(+)/REFIN2(=E2=88=92).
+> +			  0: REFIN1(+)/REFIN1(−).
+> +			  1: REFIN2(+)/REFIN2(−).
 > +			  3: AVDD
 > +			  If this field is left empty, internal reference is selected.
 > +			* adi,gain: Select the gain when converting on the specific channel.
@@ -87,51 +83,51 @@ ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > +
 > +Example:
 > +	adc@0 {
-> +		compatible =3D "adi,ad7124-4";
-> +		reg =3D <0>;
-> +		spi-max-frequency =3D <5000000>;
-> +		interrupts =3D <25 2>;
-> +		interrupt-parent =3D <&gpio>;
-> +		refin1-supply =3D <&adc_vref>;
-> +		clocks =3D <&ad7124_mclk>;
-> +		clock-names =3D "mclk";
+> +		compatible = "adi,ad7124-4";
+> +		reg = <0>;
+> +		spi-max-frequency = <5000000>;
+> +		interrupts = <25 2>;
+> +		interrupt-parent = <&gpio>;
+> +		refin1-supply = <&adc_vref>;
+> +		clocks = <&ad7124_mclk>;
+> +		clock-names = "mclk";
 > +
 > +		adi,channels {
-> +			#address-cells =3D <2>;
-> +			#size-cells =3D <0>;
+> +			#address-cells = <2>;
+> +			#size-cells = <0>;
 > +
 > +			channel@0 {
-> +				reg =3D <0 1>;
+> +				reg = <0 1>;
 Normally we'd use the value of reg in the @.
 
 I'm not actually sure what we do when there are two reg values
 and they have no particular precedence.. Rob?
 
-> +				adi,channel-number =3D <0>;
-> +				adi,reference-select =3D <0>;
-> +				adi,gain =3D <2>;
-> +				adi,odr-hz =3D <10>;
+> +				adi,channel-number = <0>;
+> +				adi,reference-select = <0>;
+> +				adi,gain = <2>;
+> +				adi,odr-hz = <10>;
 > +			};
 > +
 > +			channel@1 {
-> +				reg =3D <2 3>;
+> +				reg = <2 3>;
 > +				adi,bipolar;
-> +				adi,channel-number =3D <1>;
-> +				adi,reference-select =3D <0>;
-> +				adi,gain =3D <4>;
-> +				adi,odr-hz =3D <50>;
+> +				adi,channel-number = <1>;
+> +				adi,reference-select = <0>;
+> +				adi,gain = <4>;
+> +				adi,odr-hz = <50>;
 > +			};
 > +
 > +			channel@2 {
-> +				reg =3D <4 5>;
-> +				adi,channel-number =3D <2>;
-> +				adi,gain =3D <128>;
-> +				adi,odr-hz =3D <19200>;
+> +				reg = <4 5>;
+> +				adi,channel-number = <2>;
+> +				adi,gain = <128>;
+> +				adi,odr-hz = <19200>;
 > +			};
 > +
 > +			channel@3 {
-> +				reg =3D <6 7>;
-> +				adi,channel-number =3D <3>;
+> +				reg = <6 7>;
+> +				adi,channel-number = <3>;
 > +			};
 > +		};
 > +	};
@@ -144,6 +140,6 @@ and they have no particular precedence.. Rob?
 >  S:	Supported
 >  F:	drivers/iio/adc/ad7124.c
 > +F:	Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt
-> =20
+>  
 >  ANALOG DEVICES INC AD9389B DRIVER
 >  M:	Hans Verkuil <hans.verkuil@cisco.com>
diff --git a/a/content_digest b/N1/content_digest
index 2eea5f8..6848e13 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -3,23 +3,23 @@
  "Subject\0Re: [PATCH v2 3/3] dt-bindings: iio: adc: Add docs for ad7124\0"
  "Date\0Sun, 21 Oct 2018 15:01:37 +0100\0"
  "To\0Stefan Popa <stefan.popa@analog.com>\0"
- "Cc\0<robh+dt@kernel.org>"
-  <mark.rutland@arm.com>
-  <knaack.h@gmx.de>
-  <lars@metafoo.de>
-  <pmeerw@pmeerw.net>
-  <Michael.Hennerich@analog.com>
-  <gregkh@linuxfoundation.org>
-  <linux-iio@vger.kernel.org>
-  <devicetree@vger.kernel.org>
- " <linux-kernel@vger.kernel.org>\0"
+ "Cc\0robh+dt@kernel.org"
+  mark.rutland@arm.com
+  knaack.h@gmx.de
+  lars@metafoo.de
+  pmeerw@pmeerw.net
+  Michael.Hennerich@analog.com
+  gregkh@linuxfoundation.org
+  linux-iio@vger.kernel.org
+  devicetree@vger.kernel.org
+ " linux-kernel@vger.kernel.org\0"
  "\00:1\0"
  "b\0"
  "On Fri, 19 Oct 2018 10:47:45 +0300\n"
  "Stefan Popa <stefan.popa@analog.com> wrote:\n"
  "\n"
  "> Add support for Analog Devices AD7124 4-channels and 8-channels ADC.\n"
- ">=20\n"
+ "> \n"
  "> Signed-off-by: Stefan Popa <stefan.popa@analog.com>\n"
  "\n"
  "I'm not certain on how to do reg for the channels.  Input from\n"
@@ -35,16 +35,13 @@
  "> ---\n"
  "> Changes in v2:\n"
  "> \t- Nothing changed.\n"
- ">=20\n"
- ">  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++=\n"
- "++++++\n"
+ "> \n"
+ ">  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++++++++\n"
  ">  MAINTAINERS                                        |  1 +\n"
  ">  2 files changed, 97 insertions(+)\n"
- ">  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.=\n"
- "txt\n"
- ">=20\n"
- "> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/D=\n"
- "ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
+ ">  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
+ "> \n"
+ "> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
  "> new file mode 100644\n"
  "> index 0000000..77a7b92\n"
  "> --- /dev/null\n"
@@ -61,8 +58,7 @@
  "> +\t\tsee: Documentation/devicetree/bindings/clock/clock-bindings.txt\n"
  "> +\t- clock-names: Must be \"mclk\".\n"
  "> +\t- interrupts: IRQ line for the ADC\n"
- "> +\t\tsee: Documentation/devicetree/bindings/interrupt-controller/interrupts=\n"
- ".txt\n"
+ "> +\t\tsee: Documentation/devicetree/bindings/interrupt-controller/interrupts.txt\n"
  "> +\n"
  "> +\t- adi,channels: List of external channels connected to the ADC:\n"
  "> +\t  Required properties:\n"
@@ -84,8 +80,8 @@
  "> +\t\t\t* adi,bipolar: If set the channel is used in bipolar mode.\n"
  "> +\t\t\t* adi,reference-select: Select the reference source to use when\n"
  "> +\t\t\t  converting on the the specific channel. Valid values are:\n"
- "> +\t\t\t  0: REFIN1(+)/REFIN1(=E2=88=92).\n"
- "> +\t\t\t  1: REFIN2(+)/REFIN2(=E2=88=92).\n"
+ "> +\t\t\t  0: REFIN1(+)/REFIN1(\342\210\222).\n"
+ "> +\t\t\t  1: REFIN2(+)/REFIN2(\342\210\222).\n"
  "> +\t\t\t  3: AVDD\n"
  "> +\t\t\t  If this field is left empty, internal reference is selected.\n"
  "> +\t\t\t* adi,gain: Select the gain when converting on the specific channel.\n"
@@ -104,51 +100,51 @@
  "> +\n"
  "> +Example:\n"
  "> +\tadc@0 {\n"
- "> +\t\tcompatible =3D \"adi,ad7124-4\";\n"
- "> +\t\treg =3D <0>;\n"
- "> +\t\tspi-max-frequency =3D <5000000>;\n"
- "> +\t\tinterrupts =3D <25 2>;\n"
- "> +\t\tinterrupt-parent =3D <&gpio>;\n"
- "> +\t\trefin1-supply =3D <&adc_vref>;\n"
- "> +\t\tclocks =3D <&ad7124_mclk>;\n"
- "> +\t\tclock-names =3D \"mclk\";\n"
+ "> +\t\tcompatible = \"adi,ad7124-4\";\n"
+ "> +\t\treg = <0>;\n"
+ "> +\t\tspi-max-frequency = <5000000>;\n"
+ "> +\t\tinterrupts = <25 2>;\n"
+ "> +\t\tinterrupt-parent = <&gpio>;\n"
+ "> +\t\trefin1-supply = <&adc_vref>;\n"
+ "> +\t\tclocks = <&ad7124_mclk>;\n"
+ "> +\t\tclock-names = \"mclk\";\n"
  "> +\n"
  "> +\t\tadi,channels {\n"
- "> +\t\t\t#address-cells =3D <2>;\n"
- "> +\t\t\t#size-cells =3D <0>;\n"
+ "> +\t\t\t#address-cells = <2>;\n"
+ "> +\t\t\t#size-cells = <0>;\n"
  "> +\n"
  "> +\t\t\tchannel@0 {\n"
- "> +\t\t\t\treg =3D <0 1>;\n"
+ "> +\t\t\t\treg = <0 1>;\n"
  "Normally we'd use the value of reg in the @.\n"
  "\n"
  "I'm not actually sure what we do when there are two reg values\n"
  "and they have no particular precedence.. Rob?\n"
  "\n"
- "> +\t\t\t\tadi,channel-number =3D <0>;\n"
- "> +\t\t\t\tadi,reference-select =3D <0>;\n"
- "> +\t\t\t\tadi,gain =3D <2>;\n"
- "> +\t\t\t\tadi,odr-hz =3D <10>;\n"
+ "> +\t\t\t\tadi,channel-number = <0>;\n"
+ "> +\t\t\t\tadi,reference-select = <0>;\n"
+ "> +\t\t\t\tadi,gain = <2>;\n"
+ "> +\t\t\t\tadi,odr-hz = <10>;\n"
  "> +\t\t\t};\n"
  "> +\n"
  "> +\t\t\tchannel@1 {\n"
- "> +\t\t\t\treg =3D <2 3>;\n"
+ "> +\t\t\t\treg = <2 3>;\n"
  "> +\t\t\t\tadi,bipolar;\n"
- "> +\t\t\t\tadi,channel-number =3D <1>;\n"
- "> +\t\t\t\tadi,reference-select =3D <0>;\n"
- "> +\t\t\t\tadi,gain =3D <4>;\n"
- "> +\t\t\t\tadi,odr-hz =3D <50>;\n"
+ "> +\t\t\t\tadi,channel-number = <1>;\n"
+ "> +\t\t\t\tadi,reference-select = <0>;\n"
+ "> +\t\t\t\tadi,gain = <4>;\n"
+ "> +\t\t\t\tadi,odr-hz = <50>;\n"
  "> +\t\t\t};\n"
  "> +\n"
  "> +\t\t\tchannel@2 {\n"
- "> +\t\t\t\treg =3D <4 5>;\n"
- "> +\t\t\t\tadi,channel-number =3D <2>;\n"
- "> +\t\t\t\tadi,gain =3D <128>;\n"
- "> +\t\t\t\tadi,odr-hz =3D <19200>;\n"
+ "> +\t\t\t\treg = <4 5>;\n"
+ "> +\t\t\t\tadi,channel-number = <2>;\n"
+ "> +\t\t\t\tadi,gain = <128>;\n"
+ "> +\t\t\t\tadi,odr-hz = <19200>;\n"
  "> +\t\t\t};\n"
  "> +\n"
  "> +\t\t\tchannel@3 {\n"
- "> +\t\t\t\treg =3D <6 7>;\n"
- "> +\t\t\t\tadi,channel-number =3D <3>;\n"
+ "> +\t\t\t\treg = <6 7>;\n"
+ "> +\t\t\t\tadi,channel-number = <3>;\n"
  "> +\t\t\t};\n"
  "> +\t\t};\n"
  "> +\t};\n"
@@ -161,8 +157,8 @@
  ">  S:\tSupported\n"
  ">  F:\tdrivers/iio/adc/ad7124.c\n"
  "> +F:\tDocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
- "> =20\n"
+ ">  \n"
  ">  ANALOG DEVICES INC AD9389B DRIVER\n"
  ">  M:\tHans Verkuil <hans.verkuil@cisco.com>"
 
-a45cabce3f68df6c21be600a7e51d8f81ef34e04e477cfdbe39a852b82f8c6c7
+c3d0284c0ac52cc92020a7934607bdd913acfea016aaccc262641429b1674b50

diff --git a/a/1.txt b/N2/1.txt
index 975e5f4..3fe2497 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -2,7 +2,7 @@ On Fri, 19 Oct 2018 10:47:45 +0300
 Stefan Popa <stefan.popa@analog.com> wrote:
 
 > Add support for Analog Devices AD7124 4-channels and 8-channels ADC.
->=20
+> 
 > Signed-off-by: Stefan Popa <stefan.popa@analog.com>
 
 I'm not certain on how to do reg for the channels.  Input from
@@ -18,16 +18,13 @@ Jonathan
 > ---
 > Changes in v2:
 > 	- Nothing changed.
->=20
->  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++=
-++++++
+> 
+>  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++++++++
 >  MAINTAINERS                                        |  1 +
 >  2 files changed, 97 insertions(+)
->  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.=
-txt
->=20
-> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/D=
-ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
+>  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt
+> 
+> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > new file mode 100644
 > index 0000000..77a7b92
 > --- /dev/null
@@ -44,8 +41,7 @@ ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > +		see: Documentation/devicetree/bindings/clock/clock-bindings.txt
 > +	- clock-names: Must be "mclk".
 > +	- interrupts: IRQ line for the ADC
-> +		see: Documentation/devicetree/bindings/interrupt-controller/interrupts=
-.txt
+> +		see: Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
 > +
 > +	- adi,channels: List of external channels connected to the ADC:
 > +	  Required properties:
@@ -67,8 +63,8 @@ ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > +			* adi,bipolar: If set the channel is used in bipolar mode.
 > +			* adi,reference-select: Select the reference source to use when
 > +			  converting on the the specific channel. Valid values are:
-> +			  0: REFIN1(+)/REFIN1(=E2=88=92).
-> +			  1: REFIN2(+)/REFIN2(=E2=88=92).
+> +			  0: REFIN1(+)/REFIN1(−).
+> +			  1: REFIN2(+)/REFIN2(−).
 > +			  3: AVDD
 > +			  If this field is left empty, internal reference is selected.
 > +			* adi,gain: Select the gain when converting on the specific channel.
@@ -87,51 +83,51 @@ ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt
 > +
 > +Example:
 > +	adc@0 {
-> +		compatible =3D "adi,ad7124-4";
-> +		reg =3D <0>;
-> +		spi-max-frequency =3D <5000000>;
-> +		interrupts =3D <25 2>;
-> +		interrupt-parent =3D <&gpio>;
-> +		refin1-supply =3D <&adc_vref>;
-> +		clocks =3D <&ad7124_mclk>;
-> +		clock-names =3D "mclk";
+> +		compatible = "adi,ad7124-4";
+> +		reg = <0>;
+> +		spi-max-frequency = <5000000>;
+> +		interrupts = <25 2>;
+> +		interrupt-parent = <&gpio>;
+> +		refin1-supply = <&adc_vref>;
+> +		clocks = <&ad7124_mclk>;
+> +		clock-names = "mclk";
 > +
 > +		adi,channels {
-> +			#address-cells =3D <2>;
-> +			#size-cells =3D <0>;
+> +			#address-cells = <2>;
+> +			#size-cells = <0>;
 > +
 > +			channel@0 {
-> +				reg =3D <0 1>;
+> +				reg = <0 1>;
 Normally we'd use the value of reg in the @.
 
 I'm not actually sure what we do when there are two reg values
 and they have no particular precedence.. Rob?
 
-> +				adi,channel-number =3D <0>;
-> +				adi,reference-select =3D <0>;
-> +				adi,gain =3D <2>;
-> +				adi,odr-hz =3D <10>;
+> +				adi,channel-number = <0>;
+> +				adi,reference-select = <0>;
+> +				adi,gain = <2>;
+> +				adi,odr-hz = <10>;
 > +			};
 > +
 > +			channel@1 {
-> +				reg =3D <2 3>;
+> +				reg = <2 3>;
 > +				adi,bipolar;
-> +				adi,channel-number =3D <1>;
-> +				adi,reference-select =3D <0>;
-> +				adi,gain =3D <4>;
-> +				adi,odr-hz =3D <50>;
+> +				adi,channel-number = <1>;
+> +				adi,reference-select = <0>;
+> +				adi,gain = <4>;
+> +				adi,odr-hz = <50>;
 > +			};
 > +
 > +			channel@2 {
-> +				reg =3D <4 5>;
-> +				adi,channel-number =3D <2>;
-> +				adi,gain =3D <128>;
-> +				adi,odr-hz =3D <19200>;
+> +				reg = <4 5>;
+> +				adi,channel-number = <2>;
+> +				adi,gain = <128>;
+> +				adi,odr-hz = <19200>;
 > +			};
 > +
 > +			channel@3 {
-> +				reg =3D <6 7>;
-> +				adi,channel-number =3D <3>;
+> +				reg = <6 7>;
+> +				adi,channel-number = <3>;
 > +			};
 > +		};
 > +	};
@@ -144,6 +140,6 @@ and they have no particular precedence.. Rob?
 >  S:	Supported
 >  F:	drivers/iio/adc/ad7124.c
 > +F:	Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt
-> =20
+>  
 >  ANALOG DEVICES INC AD9389B DRIVER
 >  M:	Hans Verkuil <hans.verkuil@cisco.com>
diff --git a/a/content_digest b/N2/content_digest
index 2eea5f8..919bceb 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -19,7 +19,7 @@
  "Stefan Popa <stefan.popa@analog.com> wrote:\n"
  "\n"
  "> Add support for Analog Devices AD7124 4-channels and 8-channels ADC.\n"
- ">=20\n"
+ "> \n"
  "> Signed-off-by: Stefan Popa <stefan.popa@analog.com>\n"
  "\n"
  "I'm not certain on how to do reg for the channels.  Input from\n"
@@ -35,16 +35,13 @@
  "> ---\n"
  "> Changes in v2:\n"
  "> \t- Nothing changed.\n"
- ">=20\n"
- ">  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++=\n"
- "++++++\n"
+ "> \n"
+ ">  .../devicetree/bindings/iio/adc/adi,ad7124.txt     | 96 ++++++++++++++++++++++\n"
  ">  MAINTAINERS                                        |  1 +\n"
  ">  2 files changed, 97 insertions(+)\n"
- ">  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.=\n"
- "txt\n"
- ">=20\n"
- "> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/D=\n"
- "ocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
+ ">  create mode 100644 Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
+ "> \n"
+ "> diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt b/Documentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
  "> new file mode 100644\n"
  "> index 0000000..77a7b92\n"
  "> --- /dev/null\n"
@@ -61,8 +58,7 @@
  "> +\t\tsee: Documentation/devicetree/bindings/clock/clock-bindings.txt\n"
  "> +\t- clock-names: Must be \"mclk\".\n"
  "> +\t- interrupts: IRQ line for the ADC\n"
- "> +\t\tsee: Documentation/devicetree/bindings/interrupt-controller/interrupts=\n"
- ".txt\n"
+ "> +\t\tsee: Documentation/devicetree/bindings/interrupt-controller/interrupts.txt\n"
  "> +\n"
  "> +\t- adi,channels: List of external channels connected to the ADC:\n"
  "> +\t  Required properties:\n"
@@ -84,8 +80,8 @@
  "> +\t\t\t* adi,bipolar: If set the channel is used in bipolar mode.\n"
  "> +\t\t\t* adi,reference-select: Select the reference source to use when\n"
  "> +\t\t\t  converting on the the specific channel. Valid values are:\n"
- "> +\t\t\t  0: REFIN1(+)/REFIN1(=E2=88=92).\n"
- "> +\t\t\t  1: REFIN2(+)/REFIN2(=E2=88=92).\n"
+ "> +\t\t\t  0: REFIN1(+)/REFIN1(\342\210\222).\n"
+ "> +\t\t\t  1: REFIN2(+)/REFIN2(\342\210\222).\n"
  "> +\t\t\t  3: AVDD\n"
  "> +\t\t\t  If this field is left empty, internal reference is selected.\n"
  "> +\t\t\t* adi,gain: Select the gain when converting on the specific channel.\n"
@@ -104,51 +100,51 @@
  "> +\n"
  "> +Example:\n"
  "> +\tadc@0 {\n"
- "> +\t\tcompatible =3D \"adi,ad7124-4\";\n"
- "> +\t\treg =3D <0>;\n"
- "> +\t\tspi-max-frequency =3D <5000000>;\n"
- "> +\t\tinterrupts =3D <25 2>;\n"
- "> +\t\tinterrupt-parent =3D <&gpio>;\n"
- "> +\t\trefin1-supply =3D <&adc_vref>;\n"
- "> +\t\tclocks =3D <&ad7124_mclk>;\n"
- "> +\t\tclock-names =3D \"mclk\";\n"
+ "> +\t\tcompatible = \"adi,ad7124-4\";\n"
+ "> +\t\treg = <0>;\n"
+ "> +\t\tspi-max-frequency = <5000000>;\n"
+ "> +\t\tinterrupts = <25 2>;\n"
+ "> +\t\tinterrupt-parent = <&gpio>;\n"
+ "> +\t\trefin1-supply = <&adc_vref>;\n"
+ "> +\t\tclocks = <&ad7124_mclk>;\n"
+ "> +\t\tclock-names = \"mclk\";\n"
  "> +\n"
  "> +\t\tadi,channels {\n"
- "> +\t\t\t#address-cells =3D <2>;\n"
- "> +\t\t\t#size-cells =3D <0>;\n"
+ "> +\t\t\t#address-cells = <2>;\n"
+ "> +\t\t\t#size-cells = <0>;\n"
  "> +\n"
  "> +\t\t\tchannel@0 {\n"
- "> +\t\t\t\treg =3D <0 1>;\n"
+ "> +\t\t\t\treg = <0 1>;\n"
  "Normally we'd use the value of reg in the @.\n"
  "\n"
  "I'm not actually sure what we do when there are two reg values\n"
  "and they have no particular precedence.. Rob?\n"
  "\n"
- "> +\t\t\t\tadi,channel-number =3D <0>;\n"
- "> +\t\t\t\tadi,reference-select =3D <0>;\n"
- "> +\t\t\t\tadi,gain =3D <2>;\n"
- "> +\t\t\t\tadi,odr-hz =3D <10>;\n"
+ "> +\t\t\t\tadi,channel-number = <0>;\n"
+ "> +\t\t\t\tadi,reference-select = <0>;\n"
+ "> +\t\t\t\tadi,gain = <2>;\n"
+ "> +\t\t\t\tadi,odr-hz = <10>;\n"
  "> +\t\t\t};\n"
  "> +\n"
  "> +\t\t\tchannel@1 {\n"
- "> +\t\t\t\treg =3D <2 3>;\n"
+ "> +\t\t\t\treg = <2 3>;\n"
  "> +\t\t\t\tadi,bipolar;\n"
- "> +\t\t\t\tadi,channel-number =3D <1>;\n"
- "> +\t\t\t\tadi,reference-select =3D <0>;\n"
- "> +\t\t\t\tadi,gain =3D <4>;\n"
- "> +\t\t\t\tadi,odr-hz =3D <50>;\n"
+ "> +\t\t\t\tadi,channel-number = <1>;\n"
+ "> +\t\t\t\tadi,reference-select = <0>;\n"
+ "> +\t\t\t\tadi,gain = <4>;\n"
+ "> +\t\t\t\tadi,odr-hz = <50>;\n"
  "> +\t\t\t};\n"
  "> +\n"
  "> +\t\t\tchannel@2 {\n"
- "> +\t\t\t\treg =3D <4 5>;\n"
- "> +\t\t\t\tadi,channel-number =3D <2>;\n"
- "> +\t\t\t\tadi,gain =3D <128>;\n"
- "> +\t\t\t\tadi,odr-hz =3D <19200>;\n"
+ "> +\t\t\t\treg = <4 5>;\n"
+ "> +\t\t\t\tadi,channel-number = <2>;\n"
+ "> +\t\t\t\tadi,gain = <128>;\n"
+ "> +\t\t\t\tadi,odr-hz = <19200>;\n"
  "> +\t\t\t};\n"
  "> +\n"
  "> +\t\t\tchannel@3 {\n"
- "> +\t\t\t\treg =3D <6 7>;\n"
- "> +\t\t\t\tadi,channel-number =3D <3>;\n"
+ "> +\t\t\t\treg = <6 7>;\n"
+ "> +\t\t\t\tadi,channel-number = <3>;\n"
  "> +\t\t\t};\n"
  "> +\t\t};\n"
  "> +\t};\n"
@@ -161,8 +157,8 @@
  ">  S:\tSupported\n"
  ">  F:\tdrivers/iio/adc/ad7124.c\n"
  "> +F:\tDocumentation/devicetree/bindings/iio/adc/adi,ad7124.txt\n"
- "> =20\n"
+ ">  \n"
  ">  ANALOG DEVICES INC AD9389B DRIVER\n"
  ">  M:\tHans Verkuil <hans.verkuil@cisco.com>"
 
-a45cabce3f68df6c21be600a7e51d8f81ef34e04e477cfdbe39a852b82f8c6c7
+937ad2caf1937e0c6650caa8dac89b431c80de5a8ef157381ee4a2251e77912d

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.