All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
@ 2011-06-01 11:48 ` Heiko Stübner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:48 UTC (permalink / raw)
  To: Kukjin Kim, rjw; +Cc: Heiko Stübner, linux-arm-kernel, linux-samsung-soc

The syscore_ops patch from Rafael J. Wysocki introduced some small
glitches for the S3C24XX cpus resulting in compile errors.

Heiko Stuebner (3):
  Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
  Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
  remove the now empty mach-s3c2410/irq.c

 arch/arm/mach-s3c2410/Makefile |    1 -
 arch/arm/mach-s3c2410/irq.c    |   34 ----------------------------------
 arch/arm/plat-s3c24xx/dma.c    |    2 +-
 arch/arm/plat-s3c24xx/irq.c    |    6 ++++++
 4 files changed, 7 insertions(+), 36 deletions(-)
 delete mode 100644 arch/arm/mach-s3c2410/irq.c

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
@ 2011-06-01 11:48 ` Heiko Stübner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:48 UTC (permalink / raw)
  To: linux-arm-kernel

The syscore_ops patch from Rafael J. Wysocki introduced some small
glitches for the S3C24XX cpus resulting in compile errors.

Heiko Stuebner (3):
  Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
  Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
  remove the now empty mach-s3c2410/irq.c

 arch/arm/mach-s3c2410/Makefile |    1 -
 arch/arm/mach-s3c2410/irq.c    |   34 ----------------------------------
 arch/arm/plat-s3c24xx/dma.c    |    2 +-
 arch/arm/plat-s3c24xx/irq.c    |    6 ++++++
 4 files changed, 7 insertions(+), 36 deletions(-)
 delete mode 100644 arch/arm/mach-s3c2410/irq.c

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
  2011-06-01 11:48 ` Heiko Stübner
@ 2011-06-01 11:50   ` Heiko Stübner
  -1 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:50 UTC (permalink / raw)
  To: Kukjin Kim, rjw; +Cc: linux-arm-kernel, linux-samsung-soc, Heiko Stübner

s3c2410_dma_chan is not a type itself, so struct is required.
---
 arch/arm/plat-s3c24xx/dma.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c
index c10d10c..2abf966 100644
--- a/arch/arm/plat-s3c24xx/dma.c
+++ b/arch/arm/plat-s3c24xx/dma.c
@@ -1199,7 +1199,7 @@ EXPORT_SYMBOL(s3c2410_dma_getposition);
 
 #ifdef CONFIG_PM
 
-static void s3c2410_dma_suspend_chan(s3c2410_dma_chan *cp)
+static void s3c2410_dma_suspend_chan(struct s3c2410_dma_chan *cp)
 {
 	printk(KERN_DEBUG "suspending dma channel %d\n", cp->number);
 
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
@ 2011-06-01 11:50   ` Heiko Stübner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:50 UTC (permalink / raw)
  To: linux-arm-kernel

s3c2410_dma_chan is not a type itself, so struct is required.
---
 arch/arm/plat-s3c24xx/dma.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c
index c10d10c..2abf966 100644
--- a/arch/arm/plat-s3c24xx/dma.c
+++ b/arch/arm/plat-s3c24xx/dma.c
@@ -1199,7 +1199,7 @@ EXPORT_SYMBOL(s3c2410_dma_getposition);
 
 #ifdef CONFIG_PM
 
-static void s3c2410_dma_suspend_chan(s3c2410_dma_chan *cp)
+static void s3c2410_dma_suspend_chan(struct s3c2410_dma_chan *cp)
 {
 	printk(KERN_DEBUG "suspending dma channel %d\n", cp->number);
 
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 2/3] Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
  2011-06-01 11:48 ` Heiko Stübner
@ 2011-06-01 11:51   ` Heiko Stübner
  -1 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:51 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: rjw, linux-arm-kernel, linux-samsung-soc, Heiko Stübner

s3c24xx_irq_syscore_ops was only defined for s3c2410 cpus leading
to compile errors on for example 2412 and 2416.
---
 arch/arm/mach-s3c2410/irq.c |    5 -----
 arch/arm/plat-s3c24xx/irq.c |    6 ++++++
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/arch/arm/mach-s3c2410/irq.c b/arch/arm/mach-s3c2410/irq.c
index 2854129..4428695 100644
--- a/arch/arm/mach-s3c2410/irq.c
+++ b/arch/arm/mach-s3c2410/irq.c
@@ -27,8 +27,3 @@
 
 #include <plat/cpu.h>
 #include <plat/pm.h>
-
-struct syscore_ops s3c24xx_irq_syscore_ops = {
-	.suspend	= s3c24xx_irq_suspend,
-	.resume		= s3c24xx_irq_resume,
-};
diff --git a/arch/arm/plat-s3c24xx/irq.c b/arch/arm/plat-s3c24xx/irq.c
index 9aee7e1..fc8c5f8 100644
--- a/arch/arm/plat-s3c24xx/irq.c
+++ b/arch/arm/plat-s3c24xx/irq.c
@@ -23,6 +23,7 @@
 #include <linux/interrupt.h>
 #include <linux/ioport.h>
 #include <linux/sysdev.h>
+#include <linux/syscore_ops.h>
 
 #include <asm/irq.h>
 #include <asm/mach/irq.h>
@@ -668,3 +669,8 @@ void __init s3c24xx_init_irq(void)
 
 	irqdbf("s3c2410: registered interrupt handlers\n");
 }
+
+struct syscore_ops s3c24xx_irq_syscore_ops = {
+	.suspend	= s3c24xx_irq_suspend,
+	.resume		= s3c24xx_irq_resume,
+};
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 2/3] Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
@ 2011-06-01 11:51   ` Heiko Stübner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:51 UTC (permalink / raw)
  To: linux-arm-kernel

s3c24xx_irq_syscore_ops was only defined for s3c2410 cpus leading
to compile errors on for example 2412 and 2416.
---
 arch/arm/mach-s3c2410/irq.c |    5 -----
 arch/arm/plat-s3c24xx/irq.c |    6 ++++++
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/arch/arm/mach-s3c2410/irq.c b/arch/arm/mach-s3c2410/irq.c
index 2854129..4428695 100644
--- a/arch/arm/mach-s3c2410/irq.c
+++ b/arch/arm/mach-s3c2410/irq.c
@@ -27,8 +27,3 @@
 
 #include <plat/cpu.h>
 #include <plat/pm.h>
-
-struct syscore_ops s3c24xx_irq_syscore_ops = {
-	.suspend	= s3c24xx_irq_suspend,
-	.resume		= s3c24xx_irq_resume,
-};
diff --git a/arch/arm/plat-s3c24xx/irq.c b/arch/arm/plat-s3c24xx/irq.c
index 9aee7e1..fc8c5f8 100644
--- a/arch/arm/plat-s3c24xx/irq.c
+++ b/arch/arm/plat-s3c24xx/irq.c
@@ -23,6 +23,7 @@
 #include <linux/interrupt.h>
 #include <linux/ioport.h>
 #include <linux/sysdev.h>
+#include <linux/syscore_ops.h>
 
 #include <asm/irq.h>
 #include <asm/mach/irq.h>
@@ -668,3 +669,8 @@ void __init s3c24xx_init_irq(void)
 
 	irqdbf("s3c2410: registered interrupt handlers\n");
 }
+
+struct syscore_ops s3c24xx_irq_syscore_ops = {
+	.suspend	= s3c24xx_irq_suspend,
+	.resume		= s3c24xx_irq_resume,
+};
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 3/3] remove the now empty mach-s3c2410/irq.c
  2011-06-01 11:48 ` Heiko Stübner
@ 2011-06-01 11:52   ` Heiko Stübner
  -1 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:52 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: rjw, linux-arm-kernel, linux-samsung-soc, Heiko Stübner

---
 arch/arm/mach-s3c2410/Makefile |    1 -
 arch/arm/mach-s3c2410/irq.c    |   29 -----------------------------
 2 files changed, 0 insertions(+), 30 deletions(-)
 delete mode 100644 arch/arm/mach-s3c2410/irq.c

diff --git a/arch/arm/mach-s3c2410/Makefile b/arch/arm/mach-s3c2410/Makefile
index 0d468e9..8169535 100644
--- a/arch/arm/mach-s3c2410/Makefile
+++ b/arch/arm/mach-s3c2410/Makefile
@@ -10,7 +10,6 @@ obj-n				:=
 obj-				:=
 
 obj-$(CONFIG_CPU_S3C2410)	+= s3c2410.o
-obj-$(CONFIG_CPU_S3C2410)	+= irq.o
 obj-$(CONFIG_CPU_S3C2410_DMA)	+= dma.o
 obj-$(CONFIG_CPU_S3C2410_DMA)	+= dma.o
 obj-$(CONFIG_S3C2410_PM)	+= pm.o sleep.o
diff --git a/arch/arm/mach-s3c2410/irq.c b/arch/arm/mach-s3c2410/irq.c
deleted file mode 100644
index 4428695..0000000
--- a/arch/arm/mach-s3c2410/irq.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* linux/arch/arm/mach-s3c2410/irq.c
- *
- * Copyright (c) 2006 Simtec Electronics
- *	Ben Dooks <ben@simtec.co.uk>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
-*/
-
-#include <linux/init.h>
-#include <linux/module.h>
-#include <linux/interrupt.h>
-#include <linux/ioport.h>
-#include <linux/syscore_ops.h>
-
-#include <plat/cpu.h>
-#include <plat/pm.h>
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 3/3] remove the now empty mach-s3c2410/irq.c
@ 2011-06-01 11:52   ` Heiko Stübner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 11:52 UTC (permalink / raw)
  To: linux-arm-kernel

---
 arch/arm/mach-s3c2410/Makefile |    1 -
 arch/arm/mach-s3c2410/irq.c    |   29 -----------------------------
 2 files changed, 0 insertions(+), 30 deletions(-)
 delete mode 100644 arch/arm/mach-s3c2410/irq.c

diff --git a/arch/arm/mach-s3c2410/Makefile b/arch/arm/mach-s3c2410/Makefile
index 0d468e9..8169535 100644
--- a/arch/arm/mach-s3c2410/Makefile
+++ b/arch/arm/mach-s3c2410/Makefile
@@ -10,7 +10,6 @@ obj-n				:=
 obj-				:=
 
 obj-$(CONFIG_CPU_S3C2410)	+= s3c2410.o
-obj-$(CONFIG_CPU_S3C2410)	+= irq.o
 obj-$(CONFIG_CPU_S3C2410_DMA)	+= dma.o
 obj-$(CONFIG_CPU_S3C2410_DMA)	+= dma.o
 obj-$(CONFIG_S3C2410_PM)	+= pm.o sleep.o
diff --git a/arch/arm/mach-s3c2410/irq.c b/arch/arm/mach-s3c2410/irq.c
deleted file mode 100644
index 4428695..0000000
--- a/arch/arm/mach-s3c2410/irq.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/* linux/arch/arm/mach-s3c2410/irq.c
- *
- * Copyright (c) 2006 Simtec Electronics
- *	Ben Dooks <ben@simtec.co.uk>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- *
-*/
-
-#include <linux/init.h>
-#include <linux/module.h>
-#include <linux/interrupt.h>
-#include <linux/ioport.h>
-#include <linux/syscore_ops.h>
-
-#include <plat/cpu.h>
-#include <plat/pm.h>
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
  2011-06-01 11:48 ` Heiko Stübner
@ 2011-06-01 12:13   ` Abdoulaye Walsimou GAYE
  -1 siblings, 0 replies; 18+ messages in thread
From: Abdoulaye Walsimou GAYE @ 2011-06-01 12:13 UTC (permalink / raw)
  To: Heiko Stübner; +Cc: rjw, linux-samsung-soc, Kukjin Kim, linux-arm-kernel

Heiko Stübner wrote:
> The syscore_ops patch from Rafael J. Wysocki introduced some small
> glitches for the S3C24XX cpus resulting in compile errors.
>
> Heiko Stuebner (3):
>    Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
>    Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
>    remove the now empty mach-s3c2410/irq.c
>
>   arch/arm/mach-s3c2410/Makefile |    1 -
>   arch/arm/mach-s3c2410/irq.c    |   34 ----------------------------------
>   arch/arm/plat-s3c24xx/dma.c    |    2 +-
>   arch/arm/plat-s3c24xx/irq.c    |    6 ++++++
>   4 files changed, 7 insertions(+), 36 deletions(-)
>   delete mode 100644 arch/arm/mach-s3c2410/irq.c
>    

I submitted same patches days ago [1], but without more explanations
than "ARM: s3c24xx: fix build errors introduced by bb072c3cf21d1", so

Acked-by : Abdoulaye Walsimou Gaye <awg@embtoolkit.org>

[1] http://thread.gmane.org/gmane.linux.ports.arm.kernel/117812/focus=117814

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
@ 2011-06-01 12:13   ` Abdoulaye Walsimou GAYE
  0 siblings, 0 replies; 18+ messages in thread
From: Abdoulaye Walsimou GAYE @ 2011-06-01 12:13 UTC (permalink / raw)
  To: linux-arm-kernel

Heiko St?bner wrote:
> The syscore_ops patch from Rafael J. Wysocki introduced some small
> glitches for the S3C24XX cpus resulting in compile errors.
>
> Heiko Stuebner (3):
>    Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
>    Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
>    remove the now empty mach-s3c2410/irq.c
>
>   arch/arm/mach-s3c2410/Makefile |    1 -
>   arch/arm/mach-s3c2410/irq.c    |   34 ----------------------------------
>   arch/arm/plat-s3c24xx/dma.c    |    2 +-
>   arch/arm/plat-s3c24xx/irq.c    |    6 ++++++
>   4 files changed, 7 insertions(+), 36 deletions(-)
>   delete mode 100644 arch/arm/mach-s3c2410/irq.c
>    

I submitted same patches days ago [1], but without more explanations
than "ARM: s3c24xx: fix build errors introduced by bb072c3cf21d1", so

Acked-by : Abdoulaye Walsimou Gaye <awg@embtoolkit.org>

[1] http://thread.gmane.org/gmane.linux.ports.arm.kernel/117812/focus=117814

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
  2011-06-01 12:13   ` Abdoulaye Walsimou GAYE
@ 2011-06-01 12:45     ` Heiko Stübner
  -1 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 12:45 UTC (permalink / raw)
  To: Abdoulaye Walsimou GAYE
  Cc: Kukjin Kim, rjw, linux-samsung-soc, linux-arm-kernel, Heiko Stübner

Am Mittwoch 01 Juni 2011 schrieb Abdoulaye Walsimou GAYE:
> Heiko Stübner wrote:
> > The syscore_ops patch from Rafael J. Wysocki introduced some small
> > glitches for the S3C24XX cpus resulting in compile errors.
> 
> I submitted same patches days ago [1],
> [1]
> http://thread.gmane.org/gmane.linux.ports.arm.kernel/117812/focus=117814

irq-pm.c also was my initial target for s3c24xx_irq_syscore_ops, but it's only 
compiled when CONFIG_PM is set, where s3c24xx_irq_syscore_ops is always needed 
and its member-functions are set to null in pm.h when CONFIG_PM is not set

Heiko

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
@ 2011-06-01 12:45     ` Heiko Stübner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 12:45 UTC (permalink / raw)
  To: linux-arm-kernel

Am Mittwoch 01 Juni 2011 schrieb Abdoulaye Walsimou GAYE:
> Heiko St?bner wrote:
> > The syscore_ops patch from Rafael J. Wysocki introduced some small
> > glitches for the S3C24XX cpus resulting in compile errors.
> 
> I submitted same patches days ago [1],
> [1]
> http://thread.gmane.org/gmane.linux.ports.arm.kernel/117812/focus=117814

irq-pm.c also was my initial target for s3c24xx_irq_syscore_ops, but it's only 
compiled when CONFIG_PM is set, where s3c24xx_irq_syscore_ops is always needed 
and its member-functions are set to null in pm.h when CONFIG_PM is not set

Heiko

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH 1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
  2011-06-01 11:50   ` Heiko Stübner
@ 2011-06-01 16:01     ` Sergei Shtylyov
  -1 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2011-06-01 16:01 UTC (permalink / raw)
  To: Heiko Stübner; +Cc: Kukjin Kim, rjw, linux-samsung-soc, linux-arm-kernel

Hello.

Heiko Stübner wrote:

> s3c2410_dma_chan is not a type itself, so struct is required.

    Your signoffs are missing, so your patches can't be applied...

WBR, Sergei

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
@ 2011-06-01 16:01     ` Sergei Shtylyov
  0 siblings, 0 replies; 18+ messages in thread
From: Sergei Shtylyov @ 2011-06-01 16:01 UTC (permalink / raw)
  To: linux-arm-kernel

Hello.

Heiko St?bner wrote:

> s3c2410_dma_chan is not a type itself, so struct is required.

    Your signoffs are missing, so your patches can't be applied...

WBR, Sergei

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH 1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
  2011-06-01 16:01     ` Sergei Shtylyov
@ 2011-06-01 16:27       ` Heiko Stübner
  -1 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 16:27 UTC (permalink / raw)
  To: Sergei Shtylyov; +Cc: Kukjin Kim, rjw, linux-samsung-soc, linux-arm-kernel

Am Mittwoch 01 Juni 2011, 18:01:34 schrieben Sie:
> Hello.
> 
> Heiko Stübner wrote:
> > s3c2410_dma_chan is not a type itself, so struct is required.
> 
>     Your signoffs are missing, so your patches can't be applied...
*grml* ... I seem to have bad luck with my patches these days
will resend 

Heiko

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
@ 2011-06-01 16:27       ` Heiko Stübner
  0 siblings, 0 replies; 18+ messages in thread
From: Heiko Stübner @ 2011-06-01 16:27 UTC (permalink / raw)
  To: linux-arm-kernel

Am Mittwoch 01 Juni 2011, 18:01:34 schrieben Sie:
> Hello.
> 
> Heiko St?bner wrote:
> > s3c2410_dma_chan is not a type itself, so struct is required.
> 
>     Your signoffs are missing, so your patches can't be applied...
*grml* ... I seem to have bad luck with my patches these days
will resend 

Heiko

^ permalink raw reply	[flat|nested] 18+ messages in thread

* RE: [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
  2011-06-01 12:13   ` Abdoulaye Walsimou GAYE
@ 2011-06-22  6:54     ` Kukjin Kim
  -1 siblings, 0 replies; 18+ messages in thread
From: Kukjin Kim @ 2011-06-22  6:54 UTC (permalink / raw)
  To: 'Abdoulaye Walsimou GAYE', 'Heiko Stübner'
  Cc: rjw, linux-samsung-soc, linux-arm-kernel

Abdoulaye Walsimou GAYE wrote:
> 
> Heiko Stübner wrote:
> > The syscore_ops patch from Rafael J. Wysocki introduced some small
> > glitches for the S3C24XX cpus resulting in compile errors.
> >
> > Heiko Stuebner (3):
> >    Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
> >    Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
> >    remove the now empty mach-s3c2410/irq.c
> >
> >   arch/arm/mach-s3c2410/Makefile |    1 -
> >   arch/arm/mach-s3c2410/irq.c    |   34
----------------------------------
> >   arch/arm/plat-s3c24xx/dma.c    |    2 +-
> >   arch/arm/plat-s3c24xx/irq.c    |    6 ++++++
> >   4 files changed, 7 insertions(+), 36 deletions(-)
> >   delete mode 100644 arch/arm/mach-s3c2410/irq.c
> >
> 
> I submitted same patches days ago [1], but without more explanations
> than "ARM: s3c24xx: fix build errors introduced by bb072c3cf21d1", so
> 
> Acked-by : Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
> 
> [1]
http://thread.gmane.org/gmane.linux.ports.arm.kernel/117812/focus=117814

Hello Abdoulaye Walsimou Gaye,

Oops, sorry that I missed your patch at that time :(
I found your patch just now...

As you know, I can't add your ack on this...
Anyway thanks for your effort and time.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx
@ 2011-06-22  6:54     ` Kukjin Kim
  0 siblings, 0 replies; 18+ messages in thread
From: Kukjin Kim @ 2011-06-22  6:54 UTC (permalink / raw)
  To: linux-arm-kernel

Abdoulaye Walsimou GAYE wrote:
> 
> Heiko St?bner wrote:
> > The syscore_ops patch from Rafael J. Wysocki introduced some small
> > glitches for the S3C24XX cpus resulting in compile errors.
> >
> > Heiko Stuebner (3):
> >    Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan
> >    Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c
> >    remove the now empty mach-s3c2410/irq.c
> >
> >   arch/arm/mach-s3c2410/Makefile |    1 -
> >   arch/arm/mach-s3c2410/irq.c    |   34
----------------------------------
> >   arch/arm/plat-s3c24xx/dma.c    |    2 +-
> >   arch/arm/plat-s3c24xx/irq.c    |    6 ++++++
> >   4 files changed, 7 insertions(+), 36 deletions(-)
> >   delete mode 100644 arch/arm/mach-s3c2410/irq.c
> >
> 
> I submitted same patches days ago [1], but without more explanations
> than "ARM: s3c24xx: fix build errors introduced by bb072c3cf21d1", so
> 
> Acked-by : Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
> 
> [1]
http://thread.gmane.org/gmane.linux.ports.arm.kernel/117812/focus=117814

Hello Abdoulaye Walsimou Gaye,

Oops, sorry that I missed your patch at that time :(
I found your patch just now...

As you know, I can't add your ack on this...
Anyway thanks for your effort and time.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2011-06-22  6:54 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-01 11:48 [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx Heiko Stübner
2011-06-01 11:48 ` Heiko Stübner
2011-06-01 11:50 ` [PATCH 1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan Heiko Stübner
2011-06-01 11:50   ` Heiko Stübner
2011-06-01 16:01   ` Sergei Shtylyov
2011-06-01 16:01     ` Sergei Shtylyov
2011-06-01 16:27     ` Heiko Stübner
2011-06-01 16:27       ` Heiko Stübner
2011-06-01 11:51 ` [PATCH 2/3] Move s3c24xx_irq_syscore_ops to plat-s3c24xx/irq.c Heiko Stübner
2011-06-01 11:51   ` Heiko Stübner
2011-06-01 11:52 ` [PATCH 3/3] remove the now empty mach-s3c2410/irq.c Heiko Stübner
2011-06-01 11:52   ` Heiko Stübner
2011-06-01 12:13 ` [PATCH 0/3] Fixes for breakage resulting from syscore_ops patch on s3c24xx Abdoulaye Walsimou GAYE
2011-06-01 12:13   ` Abdoulaye Walsimou GAYE
2011-06-01 12:45   ` Heiko Stübner
2011-06-01 12:45     ` Heiko Stübner
2011-06-22  6:54   ` Kukjin Kim
2011-06-22  6:54     ` Kukjin Kim

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.