All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <5850691489174592@web4o.yandex.ru>

diff --git a/a/1.txt b/N1/1.txt
index 59cd0c6..3e0626a 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -9,30 +9,30 @@
 >
 > added in v2
 >
->  drivers/iio/adc/sun4i-gpadc-iio.c | 78 ++++++++++++++++++++++-----------------
+> ?drivers/iio/adc/sun4i-gpadc-iio.c | 78 ++++++++++++++++++++++-----------------
 
 I cannot find this source file even in linux-next.
 
->  1 file changed, 45 insertions(+), 33 deletions(-)
+> ?1 file changed, 45 insertions(+), 33 deletions(-)
 >
 > diff --git a/drivers/iio/adc/sun4i-gpadc-iio.c b/drivers/iio/adc/sun4i-gpadc-iio.c
 > index a8e134f..7cb997a 100644
 > --- a/drivers/iio/adc/sun4i-gpadc-iio.c
 > +++ b/drivers/iio/adc/sun4i-gpadc-iio.c
 > @@ -454,31 +454,16 @@ static int sun4i_irq_init(struct platform_device *pdev, const char *name,
->          return 0;
->  }
+> ?????????return 0;
+> ?}
 >
 > -static int sun4i_gpadc_probe(struct platform_device *pdev)
 > +static int sun4i_gpadc_probe_mfd(struct platform_device *pdev,
 > + struct iio_dev *indio_dev)
->  {
+> ?{
 > - struct sun4i_gpadc_iio *info;
 > - struct iio_dev *indio_dev;
 > + struct sun4i_gpadc_iio *info = iio_priv(indio_dev);
 > + struct sun4i_gpadc_dev *sun4i_gpadc_dev =
 > + dev_get_drvdata(pdev->dev.parent);
->          int ret;
+> ?????????int ret;
 > - struct sun4i_gpadc_dev *sun4i_gpadc_dev;
 > -
 > - sun4i_gpadc_dev = dev_get_drvdata(pdev->dev.parent);
@@ -45,7 +45,7 @@ I cannot find this source file even in linux-next.
 > - platform_set_drvdata(pdev, indio_dev);
 > -
 > - mutex_init(&info->mutex);
->          info->regmap = sun4i_gpadc_dev->regmap;
+> ?????????info->regmap = sun4i_gpadc_dev->regmap;
 > - info->indio_dev = indio_dev;
 > - init_completion(&info->completion);
 > - indio_dev->name = dev_name(&pdev->dev);
@@ -54,22 +54,22 @@ I cannot find this source file even in linux-next.
 > - indio_dev->info = &sun4i_gpadc_iio_info;
 > - indio_dev->modes = INDIO_DIRECT_MODE;
 > +
->          indio_dev->num_channels = ARRAY_SIZE(sun4i_gpadc_channels);
->          indio_dev->channels = sun4i_gpadc_channels;
+> ?????????indio_dev->num_channels = ARRAY_SIZE(sun4i_gpadc_channels);
+> ?????????indio_dev->channels = sun4i_gpadc_channels;
 >
 > @@ -519,8 +504,7 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)
->                          dev_err(&pdev->dev,
->                                  "could not register thermal sensor: %ld\n",
->                                  PTR_ERR(tzd));
+> ?????????????????????????dev_err(&pdev->dev,
+> ?????????????????????????????????"could not register thermal sensor: %ld\n",
+> ?????????????????????????????????PTR_ERR(tzd));
 > - ret = PTR_ERR(tzd);
 > - goto err;
 > + return PTR_ERR(tzd);
->                  }
->          } else {
->                  indio_dev->num_channels =
+> ?????????????????}
+> ?????????} else {
+> ?????????????????indio_dev->num_channels =
 > @@ -528,36 +512,65 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)
->                  indio_dev->channels = sun4i_gpadc_channels_no_temp;
->          }
+> ?????????????????indio_dev->channels = sun4i_gpadc_channels_no_temp;
+> ?????????}
 >
 > - pm_runtime_set_autosuspend_delay(&pdev->dev,
 > - SUN4I_GPADC_AUTOSUSPEND_DELAY);
@@ -77,32 +77,32 @@ I cannot find this source file even in linux-next.
 > - pm_runtime_set_suspended(&pdev->dev);
 > - pm_runtime_enable(&pdev->dev);
 > -
->          if (IS_ENABLED(CONFIG_THERMAL_OF)) {
->                  ret = sun4i_irq_init(pdev, "TEMP_DATA_PENDING",
->                                       sun4i_gpadc_temp_data_irq_handler,
->                                       "temp_data", &info->temp_data_irq,
->                                       &info->ignore_temp_data_irq);
->                  if (ret < 0)
+> ?????????if (IS_ENABLED(CONFIG_THERMAL_OF)) {
+> ?????????????????ret = sun4i_irq_init(pdev, "TEMP_DATA_PENDING",
+> ??????????????????????????????????????sun4i_gpadc_temp_data_irq_handler,
+> ??????????????????????????????????????"temp_data", &info->temp_data_irq,
+> ??????????????????????????????????????&info->ignore_temp_data_irq);
+> ?????????????????if (ret < 0)
 > - goto err;
 > + return ret;
->          }
+> ?????????}
 >
->          ret = sun4i_irq_init(pdev, "FIFO_DATA_PENDING",
->                               sun4i_gpadc_fifo_data_irq_handler, "fifo_data",
->                               &info->fifo_data_irq, &info->ignore_fifo_data_irq);
->          if (ret < 0)
+> ?????????ret = sun4i_irq_init(pdev, "FIFO_DATA_PENDING",
+> ??????????????????????????????sun4i_gpadc_fifo_data_irq_handler, "fifo_data",
+> ??????????????????????????????&info->fifo_data_irq, &info->ignore_fifo_data_irq);
+> ?????????if (ret < 0)
 > - goto err;
 > + return ret;
 >
->          if (IS_ENABLED(CONFIG_THERMAL_OF)) {
->                  ret = iio_map_array_register(indio_dev, sun4i_gpadc_hwmon_maps);
->                  if (ret < 0) {
->                          dev_err(&pdev->dev,
->                                  "failed to register iio map array\n");
+> ?????????if (IS_ENABLED(CONFIG_THERMAL_OF)) {
+> ?????????????????ret = iio_map_array_register(indio_dev, sun4i_gpadc_hwmon_maps);
+> ?????????????????if (ret < 0) {
+> ?????????????????????????dev_err(&pdev->dev,
+> ?????????????????????????????????"failed to register iio map array\n");
 > - goto err;
 > + return ret;
->                  }
->          }
+> ?????????????????}
+> ?????????}
 >
 > + return 0;
 > +}
@@ -139,21 +139,21 @@ I cannot find this source file even in linux-next.
 > + pm_runtime_set_suspended(&pdev->dev);
 > + pm_runtime_enable(&pdev->dev);
 > +
->          ret = devm_iio_device_register(&pdev->dev, indio_dev);
->          if (ret < 0) {
->                  dev_err(&pdev->dev, "could not register the device\n");
+> ?????????ret = devm_iio_device_register(&pdev->dev, indio_dev);
+> ?????????if (ret < 0) {
+> ?????????????????dev_err(&pdev->dev, "could not register the device\n");
 > @@ -570,7 +583,6 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)
->          if (IS_ENABLED(CONFIG_THERMAL_OF))
->                  iio_map_array_unregister(indio_dev);
+> ?????????if (IS_ENABLED(CONFIG_THERMAL_OF))
+> ?????????????????iio_map_array_unregister(indio_dev);
 >
 > -err:
->          pm_runtime_put(&pdev->dev);
->          pm_runtime_disable(&pdev->dev);
+> ?????????pm_runtime_put(&pdev->dev);
+> ?????????pm_runtime_disable(&pdev->dev);
 >
 > --
 > 2.9.3
 >
 > _______________________________________________
 > linux-arm-kernel mailing list
-> linux-arm-kernel@lists.infradead.org
+> linux-arm-kernel at lists.infradead.org
 > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
diff --git a/a/content_digest b/N1/content_digest
index f0d5067..9c70dfc 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,27 +1,9 @@
  "ref\020170310103921.19469-1-quentin.schulz@free-electrons.com\0"
  "ref\020170310103921.19469-8-quentin.schulz@free-electrons.com\0"
- "From\0Icenowy Zheng <icenowy@aosc.xyz>\0"
- "Subject\0Re: [PATCH v2 07/11] iio: adc: sun4i-gpadc-iio: move code used in MFD probing to new function\0"
+ "From\0icenowy@aosc.xyz (Icenowy Zheng)\0"
+ "Subject\0[PATCH v2 07/11] iio: adc: sun4i-gpadc-iio: move code used in MFD probing to new function\0"
  "Date\0Sat, 11 Mar 2017 03:36:32 +0800\0"
- "To\0Quentin Schulz <quentin.schulz@free-electrons.com>"
-  dmitry.torokhov@gmail.com <dmitry.torokhov@gmail.com>
-  robh+dt@kernel.org <robh+dt@kernel.org>
-  mark.rutland@arm.com <mark.rutland@arm.com>
-  maxime.ripard@free-electrons.com <maxime.ripard@free-electrons.com>
-  wens@csie.org <wens@csie.org>
-  lee.jones@linaro.org <lee.jones@linaro.org>
-  linux@armlinux.org.uk <linux@armlinux.org.uk>
-  jic23@kernel.org <jic23@kernel.org>
-  knaack.h@gmx.de <knaack.h@gmx.de>
-  lars@metafoo.de <lars@metafoo.de>
-  pmeerw@pmeerw.net <pmeerw@pmeerw.net>
- " stefan.mavrodiev@gmail.com <stefan.mavrodiev@gmail.com>\0"
- "Cc\0thomas.petazzoni@free-electrons.com <thomas.petazzoni@free-electrons.com>"
-  devicetree@vger.kernel.org <devicetree@vger.kernel.org>
-  linux-iio@vger.kernel.org <linux-iio@vger.kernel.org>
-  linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>
-  linux-sunxi@googlegroups.com <linux-sunxi@googlegroups.com>
- " linux-arm-kernel@lists.infradead.org <linux-arm-kernel@lists.infradead.org>\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "\n"
@@ -35,30 +17,30 @@
  ">\n"
  "> added in v2\n"
  ">\n"
- "> \302\240drivers/iio/adc/sun4i-gpadc-iio.c | 78 ++++++++++++++++++++++-----------------\n"
+ "> ?drivers/iio/adc/sun4i-gpadc-iio.c | 78 ++++++++++++++++++++++-----------------\n"
  "\n"
  "I cannot find this source file even in linux-next.\n"
  "\n"
- "> \302\2401 file changed, 45 insertions(+), 33 deletions(-)\n"
+ "> ?1 file changed, 45 insertions(+), 33 deletions(-)\n"
  ">\n"
  "> diff --git a/drivers/iio/adc/sun4i-gpadc-iio.c b/drivers/iio/adc/sun4i-gpadc-iio.c\n"
  "> index a8e134f..7cb997a 100644\n"
  "> --- a/drivers/iio/adc/sun4i-gpadc-iio.c\n"
  "> +++ b/drivers/iio/adc/sun4i-gpadc-iio.c\n"
  "> @@ -454,31 +454,16 @@ static int sun4i_irq_init(struct platform_device *pdev, const char *name,\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240return 0;\n"
- "> \302\240}\n"
+ "> ?????????return 0;\n"
+ "> ?}\n"
  ">\n"
  "> -static int sun4i_gpadc_probe(struct platform_device *pdev)\n"
  "> +static int sun4i_gpadc_probe_mfd(struct platform_device *pdev,\n"
  "> + struct iio_dev *indio_dev)\n"
- "> \302\240{\n"
+ "> ?{\n"
  "> - struct sun4i_gpadc_iio *info;\n"
  "> - struct iio_dev *indio_dev;\n"
  "> + struct sun4i_gpadc_iio *info = iio_priv(indio_dev);\n"
  "> + struct sun4i_gpadc_dev *sun4i_gpadc_dev =\n"
  "> + dev_get_drvdata(pdev->dev.parent);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240int ret;\n"
+ "> ?????????int ret;\n"
  "> - struct sun4i_gpadc_dev *sun4i_gpadc_dev;\n"
  "> -\n"
  "> - sun4i_gpadc_dev = dev_get_drvdata(pdev->dev.parent);\n"
@@ -71,7 +53,7 @@
  "> - platform_set_drvdata(pdev, indio_dev);\n"
  "> -\n"
  "> - mutex_init(&info->mutex);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240info->regmap = sun4i_gpadc_dev->regmap;\n"
+ "> ?????????info->regmap = sun4i_gpadc_dev->regmap;\n"
  "> - info->indio_dev = indio_dev;\n"
  "> - init_completion(&info->completion);\n"
  "> - indio_dev->name = dev_name(&pdev->dev);\n"
@@ -80,22 +62,22 @@
  "> - indio_dev->info = &sun4i_gpadc_iio_info;\n"
  "> - indio_dev->modes = INDIO_DIRECT_MODE;\n"
  "> +\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240indio_dev->num_channels = ARRAY_SIZE(sun4i_gpadc_channels);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240indio_dev->channels = sun4i_gpadc_channels;\n"
+ "> ?????????indio_dev->num_channels = ARRAY_SIZE(sun4i_gpadc_channels);\n"
+ "> ?????????indio_dev->channels = sun4i_gpadc_channels;\n"
  ">\n"
  "> @@ -519,8 +504,7 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240dev_err(&pdev->dev,\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\"could not register thermal sensor: %ld\\n\",\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240PTR_ERR(tzd));\n"
+ "> ?????????????????????????dev_err(&pdev->dev,\n"
+ "> ?????????????????????????????????\"could not register thermal sensor: %ld\\n\",\n"
+ "> ?????????????????????????????????PTR_ERR(tzd));\n"
  "> - ret = PTR_ERR(tzd);\n"
  "> - goto err;\n"
  "> + return PTR_ERR(tzd);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240}\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240} else {\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240indio_dev->num_channels =\n"
+ "> ?????????????????}\n"
+ "> ?????????} else {\n"
+ "> ?????????????????indio_dev->num_channels =\n"
  "> @@ -528,36 +512,65 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240indio_dev->channels = sun4i_gpadc_channels_no_temp;\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240}\n"
+ "> ?????????????????indio_dev->channels = sun4i_gpadc_channels_no_temp;\n"
+ "> ?????????}\n"
  ">\n"
  "> - pm_runtime_set_autosuspend_delay(&pdev->dev,\n"
  "> - SUN4I_GPADC_AUTOSUSPEND_DELAY);\n"
@@ -103,32 +85,32 @@
  "> - pm_runtime_set_suspended(&pdev->dev);\n"
  "> - pm_runtime_enable(&pdev->dev);\n"
  "> -\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (IS_ENABLED(CONFIG_THERMAL_OF)) {\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240ret = sun4i_irq_init(pdev, \"TEMP_DATA_PENDING\",\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240sun4i_gpadc_temp_data_irq_handler,\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\"temp_data\", &info->temp_data_irq,\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240&info->ignore_temp_data_irq);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (ret < 0)\n"
+ "> ?????????if (IS_ENABLED(CONFIG_THERMAL_OF)) {\n"
+ "> ?????????????????ret = sun4i_irq_init(pdev, \"TEMP_DATA_PENDING\",\n"
+ "> ??????????????????????????????????????sun4i_gpadc_temp_data_irq_handler,\n"
+ "> ??????????????????????????????????????\"temp_data\", &info->temp_data_irq,\n"
+ "> ??????????????????????????????????????&info->ignore_temp_data_irq);\n"
+ "> ?????????????????if (ret < 0)\n"
  "> - goto err;\n"
  "> + return ret;\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240}\n"
+ "> ?????????}\n"
  ">\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240ret = sun4i_irq_init(pdev, \"FIFO_DATA_PENDING\",\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240sun4i_gpadc_fifo_data_irq_handler, \"fifo_data\",\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240&info->fifo_data_irq, &info->ignore_fifo_data_irq);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (ret < 0)\n"
+ "> ?????????ret = sun4i_irq_init(pdev, \"FIFO_DATA_PENDING\",\n"
+ "> ??????????????????????????????sun4i_gpadc_fifo_data_irq_handler, \"fifo_data\",\n"
+ "> ??????????????????????????????&info->fifo_data_irq, &info->ignore_fifo_data_irq);\n"
+ "> ?????????if (ret < 0)\n"
  "> - goto err;\n"
  "> + return ret;\n"
  ">\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (IS_ENABLED(CONFIG_THERMAL_OF)) {\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240ret = iio_map_array_register(indio_dev, sun4i_gpadc_hwmon_maps);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (ret < 0) {\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240dev_err(&pdev->dev,\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\"failed to register iio map array\\n\");\n"
+ "> ?????????if (IS_ENABLED(CONFIG_THERMAL_OF)) {\n"
+ "> ?????????????????ret = iio_map_array_register(indio_dev, sun4i_gpadc_hwmon_maps);\n"
+ "> ?????????????????if (ret < 0) {\n"
+ "> ?????????????????????????dev_err(&pdev->dev,\n"
+ "> ?????????????????????????????????\"failed to register iio map array\\n\");\n"
  "> - goto err;\n"
  "> + return ret;\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240}\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240}\n"
+ "> ?????????????????}\n"
+ "> ?????????}\n"
  ">\n"
  "> + return 0;\n"
  "> +}\n"
@@ -165,23 +147,23 @@
  "> + pm_runtime_set_suspended(&pdev->dev);\n"
  "> + pm_runtime_enable(&pdev->dev);\n"
  "> +\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240ret = devm_iio_device_register(&pdev->dev, indio_dev);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (ret < 0) {\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240dev_err(&pdev->dev, \"could not register the device\\n\");\n"
+ "> ?????????ret = devm_iio_device_register(&pdev->dev, indio_dev);\n"
+ "> ?????????if (ret < 0) {\n"
+ "> ?????????????????dev_err(&pdev->dev, \"could not register the device\\n\");\n"
  "> @@ -570,7 +583,6 @@ static int sun4i_gpadc_probe(struct platform_device *pdev)\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240if (IS_ENABLED(CONFIG_THERMAL_OF))\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240iio_map_array_unregister(indio_dev);\n"
+ "> ?????????if (IS_ENABLED(CONFIG_THERMAL_OF))\n"
+ "> ?????????????????iio_map_array_unregister(indio_dev);\n"
  ">\n"
  "> -err:\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240pm_runtime_put(&pdev->dev);\n"
- "> \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240pm_runtime_disable(&pdev->dev);\n"
+ "> ?????????pm_runtime_put(&pdev->dev);\n"
+ "> ?????????pm_runtime_disable(&pdev->dev);\n"
  ">\n"
  "> --\n"
  "> 2.9.3\n"
  ">\n"
  "> _______________________________________________\n"
  "> linux-arm-kernel mailing list\n"
- "> linux-arm-kernel@lists.infradead.org\n"
+ "> linux-arm-kernel at lists.infradead.org\n"
  > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
 
-201f23473eacdef8c07184af342d4107270e2393a06d7eafd15256d050d32c2f
+2c2714b71432924e2506dbc608711cfbc5e5c92524ea8f8e61a16ea3a454f48a

diff --git a/a/1.txt b/N2/1.txt
index 59cd0c6..8fec77f 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -157,3 +157,8 @@ I cannot find this source file even in linux-next.
 > linux-arm-kernel mailing list
 > linux-arm-kernel@lists.infradead.org
 > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
+
+-- 
+You received this message because you are subscribed to the Google Groups "linux-sunxi" group.
+To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscribe@googlegroups.com.
+For more options, visit https://groups.google.com/d/optout.
diff --git a/a/content_digest b/N2/content_digest
index f0d5067..6df6ee5 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,27 +1,28 @@
  "ref\020170310103921.19469-1-quentin.schulz@free-electrons.com\0"
  "ref\020170310103921.19469-8-quentin.schulz@free-electrons.com\0"
- "From\0Icenowy Zheng <icenowy@aosc.xyz>\0"
+ "ref\020170310103921.19469-8-quentin.schulz-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org\0"
+ "From\0Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org>\0"
  "Subject\0Re: [PATCH v2 07/11] iio: adc: sun4i-gpadc-iio: move code used in MFD probing to new function\0"
  "Date\0Sat, 11 Mar 2017 03:36:32 +0800\0"
- "To\0Quentin Schulz <quentin.schulz@free-electrons.com>"
-  dmitry.torokhov@gmail.com <dmitry.torokhov@gmail.com>
-  robh+dt@kernel.org <robh+dt@kernel.org>
-  mark.rutland@arm.com <mark.rutland@arm.com>
-  maxime.ripard@free-electrons.com <maxime.ripard@free-electrons.com>
-  wens@csie.org <wens@csie.org>
-  lee.jones@linaro.org <lee.jones@linaro.org>
-  linux@armlinux.org.uk <linux@armlinux.org.uk>
-  jic23@kernel.org <jic23@kernel.org>
-  knaack.h@gmx.de <knaack.h@gmx.de>
-  lars@metafoo.de <lars@metafoo.de>
-  pmeerw@pmeerw.net <pmeerw@pmeerw.net>
- " stefan.mavrodiev@gmail.com <stefan.mavrodiev@gmail.com>\0"
- "Cc\0thomas.petazzoni@free-electrons.com <thomas.petazzoni@free-electrons.com>"
-  devicetree@vger.kernel.org <devicetree@vger.kernel.org>
-  linux-iio@vger.kernel.org <linux-iio@vger.kernel.org>
-  linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>
-  linux-sunxi@googlegroups.com <linux-sunxi@googlegroups.com>
- " linux-arm-kernel@lists.infradead.org <linux-arm-kernel@lists.infradead.org>\0"
+ "To\0Quentin Schulz <quentin.schulz-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>"
+  dmitry.torokhov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <dmitry.torokhov-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
+  robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
+  mark.rutland-5wv7dgnIgG8@public.gmane.org <mark.rutland-5wv7dgnIgG8@public.gmane.org>
+  maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org <maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
+  wens-jdAy2FN1RRM@public.gmane.org <wens-jdAy2FN1RRM@public.gmane.org>
+  lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
+  linux-I+IVW8TIWO2tmTQ+vhA3Yw@public.gmane.org <linux-I+IVW8TIWO2tmTQ+vhA3Yw@public.gmane.org>
+  jic23-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org <jic23-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
+  knaack.h-Mmb7MZpHnFY@public.gmane.org <knaack.h-Mmb7MZpHnFY@public.gmane.org>
+  lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org <lars-Qo5EllUWu/uELgA04lAiVw@public.gmane.org>
+  pmeerw-jW+XmwGofnusTnJN9+BGXg@public.gmane.org <pmeerw-jW+XmwGofnusTnJN9+BGXg@public.gmane.org>
+ " stefan.mavrodiev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <stefan.mavrodiev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>\0"
+ "Cc\0thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>"
+  devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org <devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
+  linux-iio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org <linux-iio-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
+  linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
+  linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
+ " linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org <linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>\0"
  "\00:1\0"
  "b\0"
  "\n"
@@ -182,6 +183,11 @@
  "> _______________________________________________\n"
  "> linux-arm-kernel mailing list\n"
  "> linux-arm-kernel@lists.infradead.org\n"
- > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
+ "> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel\n"
+ "\n"
+ "-- \n"
+ "You received this message because you are subscribed to the Google Groups \"linux-sunxi\" group.\n"
+ "To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscribe@googlegroups.com.\n"
+ For more options, visit https://groups.google.com/d/optout.
 
-201f23473eacdef8c07184af342d4107270e2393a06d7eafd15256d050d32c2f
+18731f381c7b4e157876de1084634b4ee07dcecb11b8216c8a4b47cb08f679e4

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.