All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20150309223406.14952.5669@quantum>

diff --git a/a/1.txt b/N1/1.txt
index 4252b22..91b1132 100644
--- a/a/1.txt
+++ b/N1/1.txt
@@ -5,8 +5,9 @@ Quoting Boris Brezillon (2015-03-02 01:18:16)
 > Implement the appropriate suspend/resume callback for the PMC irqchip,
 > and inform irq core that PMC irq handler can be safely called while
 > the system is suspended by setting IRQF_COND_SUSPEND.
-> 
-> Signed-off-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
+> =
+
+> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
 
 Looks OK to me. I'm not picking it due to the dependency you listed in
 the cover letter.
@@ -18,50 +19,58 @@ Mike
 >  drivers/clk/at91/pmc.c | 20 +++++++++++++++++++-
 >  drivers/clk/at91/pmc.h |  1 +
 >  2 files changed, 20 insertions(+), 1 deletion(-)
-> 
+> =
+
 > diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c
 > index f07c815..3f27d21 100644
 > --- a/drivers/clk/at91/pmc.c
 > +++ b/drivers/clk/at91/pmc.c
-> @@ -89,12 +89,29 @@ static int pmc_irq_set_type(struct irq_data *d, unsigned type)
+> @@ -89,12 +89,29 @@ static int pmc_irq_set_type(struct irq_data *d, unsig=
+ned type)
 >         return 0;
 >  }
->  
+>  =
+
 > +static void pmc_irq_suspend(struct irq_data *d)
 > +{
-> +       struct at91_pmc *pmc = irq_data_get_irq_chip_data(d);
+> +       struct at91_pmc *pmc =3D irq_data_get_irq_chip_data(d);
 > +
-> +       pmc->imr = pmc_read(pmc, AT91_PMC_IMR);
+> +       pmc->imr =3D pmc_read(pmc, AT91_PMC_IMR);
 > +       pmc_write(pmc, AT91_PMC_IDR, pmc->imr);
 > +}
 > +
 > +static void pmc_irq_resume(struct irq_data *d)
 > +{
-> +       struct at91_pmc *pmc = irq_data_get_irq_chip_data(d);
+> +       struct at91_pmc *pmc =3D irq_data_get_irq_chip_data(d);
 > +
 > +       pmc_write(pmc, AT91_PMC_IER, pmc->imr);
 > +}
 > +
->  static struct irq_chip pmc_irq = {
->         .name = "PMC",
->         .irq_disable = pmc_irq_mask,
->         .irq_mask = pmc_irq_mask,
->         .irq_unmask = pmc_irq_unmask,
->         .irq_set_type = pmc_irq_set_type,
-> +       .irq_suspend = pmc_irq_suspend,
-> +       .irq_resume = pmc_irq_resume,
+>  static struct irq_chip pmc_irq =3D {
+>         .name =3D "PMC",
+>         .irq_disable =3D pmc_irq_mask,
+>         .irq_mask =3D pmc_irq_mask,
+>         .irq_unmask =3D pmc_irq_unmask,
+>         .irq_set_type =3D pmc_irq_set_type,
+> +       .irq_suspend =3D pmc_irq_suspend,
+> +       .irq_resume =3D pmc_irq_resume,
 >  };
->  
+>  =
+
 >  static struct lock_class_key pmc_lock_class;
-> @@ -224,7 +241,8 @@ static struct at91_pmc *__init at91_pmc_init(struct device_node *np,
+> @@ -224,7 +241,8 @@ static struct at91_pmc *__init at91_pmc_init(struct d=
+evice_node *np,
 >                 goto out_free_pmc;
->  
+>  =
+
 >         pmc_write(pmc, AT91_PMC_IDR, 0xffffffff);
-> -       if (request_irq(pmc->virq, pmc_irq_handler, IRQF_SHARED, "pmc", pmc))
+> -       if (request_irq(pmc->virq, pmc_irq_handler, IRQF_SHARED, "pmc", p=
+mc))
 > +       if (request_irq(pmc->virq, pmc_irq_handler,
 > +                       IRQF_SHARED | IRQF_COND_SUSPEND, "pmc", pmc))
 >                 goto out_remove_irqdomain;
->  
+>  =
+
 >         return pmc;
 > diff --git a/drivers/clk/at91/pmc.h b/drivers/clk/at91/pmc.h
 > index 52d2041..69abb08 100644
@@ -73,12 +82,10 @@ Mike
 >         struct irq_domain *irqdomain;
 > +       u32 imr;
 >  };
->  
+>  =
+
 >  static inline void pmc_lock(struct at91_pmc *pmc)
-> -- 
+> -- =
+
 > 1.9.1
-> 
---
-To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
-the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-More majordomo info at  http://vger.kernel.org/majordomo-info.html
+>=20
diff --git a/a/content_digest b/N1/content_digest
index 2b6af71..17c1bf2 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,30 +1,30 @@
  "ref\01425287898-15093-1-git-send-email-boris.brezillon@free-electrons.com\0"
  "ref\01425287898-15093-5-git-send-email-boris.brezillon@free-electrons.com\0"
- "ref\01425287898-15093-5-git-send-email-boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org\0"
- "From\0Mike Turquette <mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>\0"
+ "From\0Mike Turquette <mturquette@linaro.org>\0"
  "Subject\0Re: [PATCH v2 4/6] clk: at91: implement suspend/resume for the PMC irqchip\0"
  "Date\0Mon, 09 Mar 2015 15:34:06 -0700\0"
- "To\0Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>"
-  Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
-  Peter Zijlstra <peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
-  Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
- " Rafael J. Wysocki <rjw-LthD3rsA81gm4RdzfppkhA@public.gmane.org>\0"
- "Cc\0Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>"
-  Pavel Machek <pavel-+ZI9xUNit7I@public.gmane.org>
-  linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Wim Van Sebroeck <wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org>
-  linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org>
-  rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
-  Greg Kroah-Hartman <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
-  Jiri Slaby <jslaby-AlSwsSmVLrQ@public.gmane.org>
-  linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Nicolas Ferre <nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
-  Jean-Christophe Plagniol-Villard <plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
-  Alexandre Belloni <alexandre.belloni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
-  linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
- " Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>\0"
+ "To\0Boris Brezillon <boris.brezillon@free-electrons.com>"
+  Thomas Gleixner <tglx@linutronix.de>
+  Jason Cooper <jason@lakedaemon.net>
+  Peter Zijlstra <peterz@infradead.org>
+  Mark Rutland <mark.rutland@arm.com>
+ " Rafael J. Wysocki <rjw@rjwysocki.net>\0"
+ "Cc\0Len Brown <len.brown@intel.com>"
+  Pavel Machek <pavel@ucw.cz>
+  linux-pm@vger.kernel.org
+  Wim Van Sebroeck <wim@iguana.be>
+  linux-watchdog@vger.kernel.org
+  Alessandro Zummo <a.zummo@towertech.it>
+  rtc-linux@googlegroups.com
+  Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+  Jiri Slaby <jslaby@suse.cz>
+  linux-serial@vger.kernel.org
+  linux-kernel@vger.kernel.org
+  Nicolas Ferre <nicolas.ferre@atmel.com>
+  Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
+  Alexandre Belloni <alexandre.belloni@free-electrons.com>
+  linux-arm-kernel@lists.infradead.org
+ " Boris Brezillon <boris.brezillon@free-electrons.com>\0"
  "\00:1\0"
  "b\0"
  "Quoting Boris Brezillon (2015-03-02 01:18:16)\n"
@@ -34,8 +34,9 @@
  "> Implement the appropriate suspend/resume callback for the PMC irqchip,\n"
  "> and inform irq core that PMC irq handler can be safely called while\n"
  "> the system is suspended by setting IRQF_COND_SUSPEND.\n"
- "> \n"
- "> Signed-off-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>\n"
+ "> =\n"
+ "\n"
+ "> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>\n"
  "\n"
  "Looks OK to me. I'm not picking it due to the dependency you listed in\n"
  "the cover letter.\n"
@@ -47,50 +48,58 @@
  ">  drivers/clk/at91/pmc.c | 20 +++++++++++++++++++-\n"
  ">  drivers/clk/at91/pmc.h |  1 +\n"
  ">  2 files changed, 20 insertions(+), 1 deletion(-)\n"
- "> \n"
+ "> =\n"
+ "\n"
  "> diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c\n"
  "> index f07c815..3f27d21 100644\n"
  "> --- a/drivers/clk/at91/pmc.c\n"
  "> +++ b/drivers/clk/at91/pmc.c\n"
- "> @@ -89,12 +89,29 @@ static int pmc_irq_set_type(struct irq_data *d, unsigned type)\n"
+ "> @@ -89,12 +89,29 @@ static int pmc_irq_set_type(struct irq_data *d, unsig=\n"
+ "ned type)\n"
  ">         return 0;\n"
  ">  }\n"
- ">  \n"
+ ">  =\n"
+ "\n"
  "> +static void pmc_irq_suspend(struct irq_data *d)\n"
  "> +{\n"
- "> +       struct at91_pmc *pmc = irq_data_get_irq_chip_data(d);\n"
+ "> +       struct at91_pmc *pmc =3D irq_data_get_irq_chip_data(d);\n"
  "> +\n"
- "> +       pmc->imr = pmc_read(pmc, AT91_PMC_IMR);\n"
+ "> +       pmc->imr =3D pmc_read(pmc, AT91_PMC_IMR);\n"
  "> +       pmc_write(pmc, AT91_PMC_IDR, pmc->imr);\n"
  "> +}\n"
  "> +\n"
  "> +static void pmc_irq_resume(struct irq_data *d)\n"
  "> +{\n"
- "> +       struct at91_pmc *pmc = irq_data_get_irq_chip_data(d);\n"
+ "> +       struct at91_pmc *pmc =3D irq_data_get_irq_chip_data(d);\n"
  "> +\n"
  "> +       pmc_write(pmc, AT91_PMC_IER, pmc->imr);\n"
  "> +}\n"
  "> +\n"
- ">  static struct irq_chip pmc_irq = {\n"
- ">         .name = \"PMC\",\n"
- ">         .irq_disable = pmc_irq_mask,\n"
- ">         .irq_mask = pmc_irq_mask,\n"
- ">         .irq_unmask = pmc_irq_unmask,\n"
- ">         .irq_set_type = pmc_irq_set_type,\n"
- "> +       .irq_suspend = pmc_irq_suspend,\n"
- "> +       .irq_resume = pmc_irq_resume,\n"
+ ">  static struct irq_chip pmc_irq =3D {\n"
+ ">         .name =3D \"PMC\",\n"
+ ">         .irq_disable =3D pmc_irq_mask,\n"
+ ">         .irq_mask =3D pmc_irq_mask,\n"
+ ">         .irq_unmask =3D pmc_irq_unmask,\n"
+ ">         .irq_set_type =3D pmc_irq_set_type,\n"
+ "> +       .irq_suspend =3D pmc_irq_suspend,\n"
+ "> +       .irq_resume =3D pmc_irq_resume,\n"
  ">  };\n"
- ">  \n"
+ ">  =\n"
+ "\n"
  ">  static struct lock_class_key pmc_lock_class;\n"
- "> @@ -224,7 +241,8 @@ static struct at91_pmc *__init at91_pmc_init(struct device_node *np,\n"
+ "> @@ -224,7 +241,8 @@ static struct at91_pmc *__init at91_pmc_init(struct d=\n"
+ "evice_node *np,\n"
  ">                 goto out_free_pmc;\n"
- ">  \n"
+ ">  =\n"
+ "\n"
  ">         pmc_write(pmc, AT91_PMC_IDR, 0xffffffff);\n"
- "> -       if (request_irq(pmc->virq, pmc_irq_handler, IRQF_SHARED, \"pmc\", pmc))\n"
+ "> -       if (request_irq(pmc->virq, pmc_irq_handler, IRQF_SHARED, \"pmc\", p=\n"
+ "mc))\n"
  "> +       if (request_irq(pmc->virq, pmc_irq_handler,\n"
  "> +                       IRQF_SHARED | IRQF_COND_SUSPEND, \"pmc\", pmc))\n"
  ">                 goto out_remove_irqdomain;\n"
- ">  \n"
+ ">  =\n"
+ "\n"
  ">         return pmc;\n"
  "> diff --git a/drivers/clk/at91/pmc.h b/drivers/clk/at91/pmc.h\n"
  "> index 52d2041..69abb08 100644\n"
@@ -102,14 +111,12 @@
  ">         struct irq_domain *irqdomain;\n"
  "> +       u32 imr;\n"
  ">  };\n"
- ">  \n"
+ ">  =\n"
+ "\n"
  ">  static inline void pmc_lock(struct at91_pmc *pmc)\n"
- "> -- \n"
+ "> -- =\n"
+ "\n"
  "> 1.9.1\n"
- "> \n"
- "--\n"
- "To unsubscribe from this list: send the line \"unsubscribe linux-watchdog\" in\n"
- "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n"
- More majordomo info at  http://vger.kernel.org/majordomo-info.html
+ >=20
 
-28453c0918316e4d02f6bc359e12df61652792453259a3c9e5b20e4d9ea11e8e
+ed866bcdfa4e7f42ddeb7f13095b8a0cdaa5f2a215199d4c27d3d47aa1888166

diff --git a/a/1.txt b/N2/1.txt
index 4252b22..7e1be9e 100644
--- a/a/1.txt
+++ b/N2/1.txt
@@ -6,7 +6,7 @@ Quoting Boris Brezillon (2015-03-02 01:18:16)
 > and inform irq core that PMC irq handler can be safely called while
 > the system is suspended by setting IRQF_COND_SUSPEND.
 > 
-> Signed-off-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
+> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
 
 Looks OK to me. I'm not picking it due to the dependency you listed in
 the cover letter.
@@ -77,8 +77,4 @@ Mike
 >  static inline void pmc_lock(struct at91_pmc *pmc)
 > -- 
 > 1.9.1
-> 
---
-To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
-the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-More majordomo info at  http://vger.kernel.org/majordomo-info.html
+>
diff --git a/a/content_digest b/N2/content_digest
index 2b6af71..c200abd 100644
--- a/a/content_digest
+++ b/N2/content_digest
@@ -1,30 +1,30 @@
  "ref\01425287898-15093-1-git-send-email-boris.brezillon@free-electrons.com\0"
  "ref\01425287898-15093-5-git-send-email-boris.brezillon@free-electrons.com\0"
- "ref\01425287898-15093-5-git-send-email-boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org\0"
- "From\0Mike Turquette <mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>\0"
+ "From\0Mike Turquette <mturquette@linaro.org>\0"
  "Subject\0Re: [PATCH v2 4/6] clk: at91: implement suspend/resume for the PMC irqchip\0"
  "Date\0Mon, 09 Mar 2015 15:34:06 -0700\0"
- "To\0Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>"
-  Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
-  Peter Zijlstra <peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
-  Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
- " Rafael J. Wysocki <rjw-LthD3rsA81gm4RdzfppkhA@public.gmane.org>\0"
- "Cc\0Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>"
-  Pavel Machek <pavel-+ZI9xUNit7I@public.gmane.org>
-  linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Wim Van Sebroeck <wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org>
-  linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org>
-  rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
-  Greg Kroah-Hartman <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
-  Jiri Slaby <jslaby-AlSwsSmVLrQ@public.gmane.org>
-  linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Nicolas Ferre <nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
-  Jean-Christophe Plagniol-Villard <plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
-  Alexandre Belloni <alexandre.belloni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
-  linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
- " Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>\0"
+ "To\0Boris Brezillon <boris.brezillon@free-electrons.com>"
+  Thomas Gleixner <tglx@linutronix.de>
+  Jason Cooper <jason@lakedaemon.net>
+  Peter Zijlstra <peterz@infradead.org>
+  Mark Rutland <mark.rutland@arm.com>
+ " Rafael J. Wysocki <rjw@rjwysocki.net>\0"
+ "Cc\0Len Brown <len.brown@intel.com>"
+  Pavel Machek <pavel@ucw.cz>
+  linux-pm@vger.kernel.org
+  Wim Van Sebroeck <wim@iguana.be>
+  linux-watchdog@vger.kernel.org
+  Alessandro Zummo <a.zummo@towertech.it>
+  rtc-linux@googlegroups.com
+  Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+  Jiri Slaby <jslaby@suse.cz>
+  linux-serial@vger.kernel.org
+  linux-kernel@vger.kernel.org
+  Nicolas Ferre <nicolas.ferre@atmel.com>
+  Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
+  Alexandre Belloni <alexandre.belloni@free-electrons.com>
+  linux-arm-kernel@lists.infradead.org
+ " Boris Brezillon <boris.brezillon@free-electrons.com>\0"
  "\00:1\0"
  "b\0"
  "Quoting Boris Brezillon (2015-03-02 01:18:16)\n"
@@ -35,7 +35,7 @@
  "> and inform irq core that PMC irq handler can be safely called while\n"
  "> the system is suspended by setting IRQF_COND_SUSPEND.\n"
  "> \n"
- "> Signed-off-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>\n"
+ "> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>\n"
  "\n"
  "Looks OK to me. I'm not picking it due to the dependency you listed in\n"
  "the cover letter.\n"
@@ -106,10 +106,6 @@
  ">  static inline void pmc_lock(struct at91_pmc *pmc)\n"
  "> -- \n"
  "> 1.9.1\n"
- "> \n"
- "--\n"
- "To unsubscribe from this list: send the line \"unsubscribe linux-watchdog\" in\n"
- "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n"
- More majordomo info at  http://vger.kernel.org/majordomo-info.html
+ >
 
-28453c0918316e4d02f6bc359e12df61652792453259a3c9e5b20e4d9ea11e8e
+f78db631df35549c7112c9ae50ecbb2ad6894ce694b97747290c43630f32322e

diff --git a/a/1.txt b/N3/1.txt
index 4252b22..7e1be9e 100644
--- a/a/1.txt
+++ b/N3/1.txt
@@ -6,7 +6,7 @@ Quoting Boris Brezillon (2015-03-02 01:18:16)
 > and inform irq core that PMC irq handler can be safely called while
 > the system is suspended by setting IRQF_COND_SUSPEND.
 > 
-> Signed-off-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
+> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
 
 Looks OK to me. I'm not picking it due to the dependency you listed in
 the cover letter.
@@ -77,8 +77,4 @@ Mike
 >  static inline void pmc_lock(struct at91_pmc *pmc)
 > -- 
 > 1.9.1
-> 
---
-To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in
-the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-More majordomo info at  http://vger.kernel.org/majordomo-info.html
+>
diff --git a/a/content_digest b/N3/content_digest
index 2b6af71..dab9e1d 100644
--- a/a/content_digest
+++ b/N3/content_digest
@@ -1,30 +1,9 @@
  "ref\01425287898-15093-1-git-send-email-boris.brezillon@free-electrons.com\0"
  "ref\01425287898-15093-5-git-send-email-boris.brezillon@free-electrons.com\0"
- "ref\01425287898-15093-5-git-send-email-boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org\0"
- "From\0Mike Turquette <mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>\0"
- "Subject\0Re: [PATCH v2 4/6] clk: at91: implement suspend/resume for the PMC irqchip\0"
+ "From\0mturquette@linaro.org (Mike Turquette)\0"
+ "Subject\0[PATCH v2 4/6] clk: at91: implement suspend/resume for the PMC irqchip\0"
  "Date\0Mon, 09 Mar 2015 15:34:06 -0700\0"
- "To\0Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>"
-  Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
-  Peter Zijlstra <peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
-  Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
- " Rafael J. Wysocki <rjw-LthD3rsA81gm4RdzfppkhA@public.gmane.org>\0"
- "Cc\0Len Brown <len.brown-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>"
-  Pavel Machek <pavel-+ZI9xUNit7I@public.gmane.org>
-  linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Wim Van Sebroeck <wim-IQzOog9fTRqzQB+pC5nmwQ@public.gmane.org>
-  linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Alessandro Zummo <a.zummo-BfzFCNDTiLLj+vYz1yj4TQ@public.gmane.org>
-  rtc-linux-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
-  Greg Kroah-Hartman <gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>
-  Jiri Slaby <jslaby-AlSwsSmVLrQ@public.gmane.org>
-  linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
-  Nicolas Ferre <nicolas.ferre-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
-  Jean-Christophe Plagniol-Villard <plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
-  Alexandre Belloni <alexandre.belloni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
-  linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
- " Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>\0"
+ "To\0linux-arm-kernel@lists.infradead.org\0"
  "\00:1\0"
  "b\0"
  "Quoting Boris Brezillon (2015-03-02 01:18:16)\n"
@@ -35,7 +14,7 @@
  "> and inform irq core that PMC irq handler can be safely called while\n"
  "> the system is suspended by setting IRQF_COND_SUSPEND.\n"
  "> \n"
- "> Signed-off-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>\n"
+ "> Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>\n"
  "\n"
  "Looks OK to me. I'm not picking it due to the dependency you listed in\n"
  "the cover letter.\n"
@@ -106,10 +85,6 @@
  ">  static inline void pmc_lock(struct at91_pmc *pmc)\n"
  "> -- \n"
  "> 1.9.1\n"
- "> \n"
- "--\n"
- "To unsubscribe from this list: send the line \"unsubscribe linux-watchdog\" in\n"
- "the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org\n"
- More majordomo info at  http://vger.kernel.org/majordomo-info.html
+ >
 
-28453c0918316e4d02f6bc359e12df61652792453259a3c9e5b20e4d9ea11e8e
+3d94c0cd595300dc10abaddfcb0bf342935354cd4e6fea1863f6e4bbc7eeab4c

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.