All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <1468609977.25630.5.camel@buserror.net>

diff --git a/a/1.txt b/N1/1.txt
index c8c9298..4968b23 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -12,41 +12,41 @@ On Fri, 2016-07-15 at 12:43 -0400, Paul Gortmaker wrote:
 > > Acked-by: Scott Wood <oss@buserror.net>
 > > ---
 > > Changes for v4:
-> >         - Added this patch
+> > ????????- Added this patch
 > > Changes for v5:
-> >         - Modified copyright info
-> >         - Changed MODULE_LICENSE to GPL
-> >         - Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL
-> >         - Made FSL_GUTS user-invisible
-> >         - Added a complete compatible list for GUTS
-> >         - Stored guts info in file-scope variable
-> >         - Added mfspr() getting SVR
-> >         - Redefined GUTS APIs
-> >         - Called fsl_guts_init rather than using platform driver
-> >         - Removed useless parentheses
-> >         - Removed useless 'extern' key words
+> > ????????- Modified copyright info
+> > ????????- Changed MODULE_LICENSE to GPL
+> > ????????- Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL
+> > ????????- Made FSL_GUTS user-invisible
+> > ????????- Added a complete compatible list for GUTS
+> > ????????- Stored guts info in file-scope variable
+> > ????????- Added mfspr() getting SVR
+> > ????????- Redefined GUTS APIs
+> > ????????- Called fsl_guts_init rather than using platform driver
+> > ????????- Removed useless parentheses
+> > ????????- Removed useless 'extern' key words
 > > Changes for v6:
-> >         - Made guts thread safe in fsl_guts_init
+> > ????????- Made guts thread safe in fsl_guts_init
 > > Changes for v7:
-> >         - Removed 'ifdef' for function declaration in guts.h
+> > ????????- Removed 'ifdef' for function declaration in guts.h
 > > Changes for v8:
-> >         - Fixes lines longer than 80 characters checkpatch issue
-> >         - Added 'Acked-by: Scott Wood'
+> > ????????- Fixes lines longer than 80 characters checkpatch issue
+> > ????????- Added 'Acked-by: Scott Wood'
 > > Changes for v9:
-> >         - None
+> > ????????- None
 > > Changes for v10:
-> >         - None
+> > ????????- None
 > > ---
-> >  drivers/soc/Kconfig      |   2 +-
-> >  drivers/soc/fsl/Kconfig  |   8 +++
-> >  drivers/soc/fsl/Makefile |   1 +
-> >  drivers/soc/fsl/guts.c   | 119
+> > ?drivers/soc/Kconfig??????|???2 +-
+> > ?drivers/soc/fsl/Kconfig??|???8 +++
+> > ?drivers/soc/fsl/Makefile |???1 +
+> > ?drivers/soc/fsl/guts.c???| 119
 > > ++++++++++++++++++++++++++++++++++++++++++++
-> >  include/linux/fsl/guts.h | 126 +++++++++++++++++++++++++++++-------------
+> > ?include/linux/fsl/guts.h | 126 +++++++++++++++++++++++++++++-------------
 > > -----
-> >  5 files changed, 207 insertions(+), 49 deletions(-)
-> >  create mode 100644 drivers/soc/fsl/Kconfig
-> >  create mode 100644 drivers/soc/fsl/guts.c
+> > ?5 files changed, 207 insertions(+), 49 deletions(-)
+> > ?create mode 100644 drivers/soc/fsl/Kconfig
+> > ?create mode 100644 drivers/soc/fsl/guts.c
 > > 
 > > diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig
 > > index cb58ef0..7106463 100644
@@ -54,13 +54,13 @@ On Fri, 2016-07-15 at 12:43 -0400, Paul Gortmaker wrote:
 > > +++ b/drivers/soc/Kconfig
 > > @@ -2,7 +2,7 @@ menu "SOC (System On Chip) specific Drivers"
 > > 
-> >  source "drivers/soc/bcm/Kconfig"
-> >  source "drivers/soc/brcmstb/Kconfig"
+> > ?source "drivers/soc/bcm/Kconfig"
+> > ?source "drivers/soc/brcmstb/Kconfig"
 > > -source "drivers/soc/fsl/qe/Kconfig"
 > > +source "drivers/soc/fsl/Kconfig"
-> >  source "drivers/soc/mediatek/Kconfig"
-> >  source "drivers/soc/qcom/Kconfig"
-> >  source "drivers/soc/rockchip/Kconfig"
+> > ?source "drivers/soc/mediatek/Kconfig"
+> > ?source "drivers/soc/qcom/Kconfig"
+> > ?source "drivers/soc/rockchip/Kconfig"
 > > diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig
 > > new file mode 100644
 > > index 0000000..b313759
@@ -74,16 +74,16 @@ On Fri, 2016-07-15 at 12:43 -0400, Paul Gortmaker wrote:
 > > +source "drivers/soc/fsl/qe/Kconfig"
 > > +
 > > +config FSL_GUTS
-> > +       bool
+> > +???????bool
 > > diff --git a/drivers/soc/fsl/Makefile b/drivers/soc/fsl/Makefile
 > > index 203307f..02afb7f 100644
 > > --- a/drivers/soc/fsl/Makefile
 > > +++ b/drivers/soc/fsl/Makefile
 > > @@ -4,3 +4,4 @@
 > > 
-> >  obj-$(CONFIG_QUICC_ENGINE)             += qe/
-> >  obj-$(CONFIG_CPM)                      += qe/
-> > +obj-$(CONFIG_FSL_GUTS)                 += guts.o
+> > ?obj-$(CONFIG_QUICC_ENGINE)?????????????+= qe/
+> > ?obj-$(CONFIG_CPM)??????????????????????+= qe/
+> > +obj-$(CONFIG_FSL_GUTS)?????????????????+= guts.o
 > > diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c
 > > new file mode 100644
 > > index 0000000..fa155e6
@@ -103,7 +103,7 @@ On Fri, 2016-07-15 at 12:43 -0400, Paul Gortmaker wrote:
 > > +
 > > +#include <linux/io.h>
 > > +#include <linux/module.h>
-> Seems there was lots of discussion on this.  If it does end up being
+> Seems there was lots of discussion on this.??If it does end up being
 > resent, it would be nice to get the module.h and other modular stuff
 > gone since it is a bool Kconfig.
 
diff --git a/a/content_digest b/N1/content_digest
index 91facc8..8cea476 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,33 +1,10 @@
  "ref\01462417950-46796-1-git-send-email-yangbo.lu@nxp.com\0"
  "ref\01462417950-46796-4-git-send-email-yangbo.lu@nxp.com\0"
  "ref\0CAP=VYLqsV_M=8CM47k4kzdULCp_y0yP9t8Sq9=jFp6W593QJgw@mail.gmail.com\0"
- "From\0Scott Wood <oss@buserror.net>\0"
- "Subject\0Re: [v10, 3/7] soc: fsl: add GUTS driver for QorIQ platforms\0"
+ "From\0oss@buserror.net (Scott Wood)\0"
+ "Subject\0[v10, 3/7] soc: fsl: add GUTS driver for QorIQ platforms\0"
  "Date\0Fri, 15 Jul 2016 14:12:57 -0500\0"
- "To\0Paul Gortmaker <paul.gortmaker@windriver.com>"
- " Yangbo Lu <yangbo.lu@nxp.com>\0"
- "Cc\0linux-mmc@vger.kernel.org"
-  linuxppc-dev <linuxppc-dev@lists.ozlabs.org>
-  devicetree@vger.kernel.org
-  linux-arm-kernel@lists.infradead.org <linux-arm-kernel@lists.infradead.org>
-  LKML <linux-kernel@vger.kernel.org>
-  linux-clk@vger.kernel.org
-  linux-i2c@vger.kernel.org
-  iommu@lists.linux-foundation.org
-  netdev <netdev@vger.kernel.org>
-  ulf.hansson@linaro.org
-  Mark Rutland <mark.rutland@arm.com>
-  Rob Herring <robh+dt@kernel.org>
-  Russell King <linux@arm.linux.org.uk>
-  Jochen Friedrich <jochen@scram.de>
-  Joerg Roedel <joro@8bytes.org>
-  Claudiu Manoil <claudiu.manoil@freescale.com>
-  Bhupesh Sharma <bhupesh.sharma@freescale.com>
-  Qiang Zhao <qiang.zhao@nxp.com>
-  Kumar Gala <galak@codeaurora.org>
-  Santosh Shilimkar <ssantosh@kernel.org>
-  leoyang.li@nxp.com
- " xiaobo.xie@nxp.com\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "On Fri, 2016-07-15 at 12:43 -0400, Paul Gortmaker wrote:\n"
@@ -44,41 +21,41 @@
  "> > Acked-by: Scott Wood <oss@buserror.net>\n"
  "> > ---\n"
  "> > Changes for v4:\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Added this patch\n"
+ "> > ????????- Added this patch\n"
  "> > Changes for v5:\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Modified copyright info\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Changed MODULE_LICENSE to GPL\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Made FSL_GUTS user-invisible\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Added a complete compatible list for GUTS\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Stored guts info in file-scope variable\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Added mfspr() getting SVR\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Redefined GUTS APIs\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Called fsl_guts_init rather than using platform driver\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Removed useless parentheses\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Removed useless 'extern' key words\n"
+ "> > ????????- Modified copyright info\n"
+ "> > ????????- Changed MODULE_LICENSE to GPL\n"
+ "> > ????????- Changed EXPORT_SYMBOL_GPL to EXPORT_SYMBOL\n"
+ "> > ????????- Made FSL_GUTS user-invisible\n"
+ "> > ????????- Added a complete compatible list for GUTS\n"
+ "> > ????????- Stored guts info in file-scope variable\n"
+ "> > ????????- Added mfspr() getting SVR\n"
+ "> > ????????- Redefined GUTS APIs\n"
+ "> > ????????- Called fsl_guts_init rather than using platform driver\n"
+ "> > ????????- Removed useless parentheses\n"
+ "> > ????????- Removed useless 'extern' key words\n"
  "> > Changes for v6:\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Made guts thread safe in fsl_guts_init\n"
+ "> > ????????- Made guts thread safe in fsl_guts_init\n"
  "> > Changes for v7:\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Removed 'ifdef' for function declaration in guts.h\n"
+ "> > ????????- Removed 'ifdef' for function declaration in guts.h\n"
  "> > Changes for v8:\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Fixes lines longer than 80 characters checkpatch issue\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- Added 'Acked-by: Scott Wood'\n"
+ "> > ????????- Fixes lines longer than 80 characters checkpatch issue\n"
+ "> > ????????- Added 'Acked-by: Scott Wood'\n"
  "> > Changes for v9:\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- None\n"
+ "> > ????????- None\n"
  "> > Changes for v10:\n"
- "> > \302\240\302\240\302\240\302\240\302\240\302\240\302\240\302\240- None\n"
+ "> > ????????- None\n"
  "> > ---\n"
- "> > \302\240drivers/soc/Kconfig\302\240\302\240\302\240\302\240\302\240\302\240|\302\240\302\240\302\2402 +-\n"
- "> > \302\240drivers/soc/fsl/Kconfig\302\240\302\240|\302\240\302\240\302\2408 +++\n"
- "> > \302\240drivers/soc/fsl/Makefile |\302\240\302\240\302\2401 +\n"
- "> > \302\240drivers/soc/fsl/guts.c\302\240\302\240\302\240| 119\n"
+ "> > ?drivers/soc/Kconfig??????|???2 +-\n"
+ "> > ?drivers/soc/fsl/Kconfig??|???8 +++\n"
+ "> > ?drivers/soc/fsl/Makefile |???1 +\n"
+ "> > ?drivers/soc/fsl/guts.c???| 119\n"
  "> > ++++++++++++++++++++++++++++++++++++++++++++\n"
- "> > \302\240include/linux/fsl/guts.h | 126 +++++++++++++++++++++++++++++-------------\n"
+ "> > ?include/linux/fsl/guts.h | 126 +++++++++++++++++++++++++++++-------------\n"
  "> > -----\n"
- "> > \302\2405 files changed, 207 insertions(+), 49 deletions(-)\n"
- "> > \302\240create mode 100644 drivers/soc/fsl/Kconfig\n"
- "> > \302\240create mode 100644 drivers/soc/fsl/guts.c\n"
+ "> > ?5 files changed, 207 insertions(+), 49 deletions(-)\n"
+ "> > ?create mode 100644 drivers/soc/fsl/Kconfig\n"
+ "> > ?create mode 100644 drivers/soc/fsl/guts.c\n"
  "> > \n"
  "> > diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig\n"
  "> > index cb58ef0..7106463 100644\n"
@@ -86,13 +63,13 @@
  "> > +++ b/drivers/soc/Kconfig\n"
  "> > @@ -2,7 +2,7 @@ menu \"SOC (System On Chip) specific Drivers\"\n"
  "> > \n"
- "> > \302\240source \"drivers/soc/bcm/Kconfig\"\n"
- "> > \302\240source \"drivers/soc/brcmstb/Kconfig\"\n"
+ "> > ?source \"drivers/soc/bcm/Kconfig\"\n"
+ "> > ?source \"drivers/soc/brcmstb/Kconfig\"\n"
  "> > -source \"drivers/soc/fsl/qe/Kconfig\"\n"
  "> > +source \"drivers/soc/fsl/Kconfig\"\n"
- "> > \302\240source \"drivers/soc/mediatek/Kconfig\"\n"
- "> > \302\240source \"drivers/soc/qcom/Kconfig\"\n"
- "> > \302\240source \"drivers/soc/rockchip/Kconfig\"\n"
+ "> > ?source \"drivers/soc/mediatek/Kconfig\"\n"
+ "> > ?source \"drivers/soc/qcom/Kconfig\"\n"
+ "> > ?source \"drivers/soc/rockchip/Kconfig\"\n"
  "> > diff --git a/drivers/soc/fsl/Kconfig b/drivers/soc/fsl/Kconfig\n"
  "> > new file mode 100644\n"
  "> > index 0000000..b313759\n"
@@ -106,16 +83,16 @@
  "> > +source \"drivers/soc/fsl/qe/Kconfig\"\n"
  "> > +\n"
  "> > +config FSL_GUTS\n"
- "> > +\302\240\302\240\302\240\302\240\302\240\302\240\302\240bool\n"
+ "> > +???????bool\n"
  "> > diff --git a/drivers/soc/fsl/Makefile b/drivers/soc/fsl/Makefile\n"
  "> > index 203307f..02afb7f 100644\n"
  "> > --- a/drivers/soc/fsl/Makefile\n"
  "> > +++ b/drivers/soc/fsl/Makefile\n"
  "> > @@ -4,3 +4,4 @@\n"
  "> > \n"
- "> > \302\240obj-$(CONFIG_QUICC_ENGINE)\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+= qe/\n"
- "> > \302\240obj-$(CONFIG_CPM)\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+= qe/\n"
- "> > +obj-$(CONFIG_FSL_GUTS)\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+= guts.o\n"
+ "> > ?obj-$(CONFIG_QUICC_ENGINE)?????????????+= qe/\n"
+ "> > ?obj-$(CONFIG_CPM)??????????????????????+= qe/\n"
+ "> > +obj-$(CONFIG_FSL_GUTS)?????????????????+= guts.o\n"
  "> > diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c\n"
  "> > new file mode 100644\n"
  "> > index 0000000..fa155e6\n"
@@ -135,7 +112,7 @@
  "> > +\n"
  "> > +#include <linux/io.h>\n"
  "> > +#include <linux/module.h>\n"
- "> Seems there was lots of discussion on this.\302\240\302\240If it does end up being\n"
+ "> Seems there was lots of discussion on this.??If it does end up being\n"
  "> resent, it would be nice to get the module.h and other modular stuff\n"
  "> gone since it is a bool Kconfig.\n"
  "\n"
@@ -146,4 +123,4 @@
  "\n"
  -Scott
 
-fcd5539c5f94ecb53463b960767db3d288d8c26362d8a6169e455374a1ee9d6d
+9b1987afee2860d157cddf8df4034b68d0ef3ce2c319b13657661cd37a5f84ce

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.