diff mbox

[1/3] Fix missing struct for s3c2410_dma_chan in s3c2410_dma_suspend_chan

Message ID 201106011350.44375.heiko@sntech.de (mailing list archive)
State New, archived
Headers show

Commit Message

Heiko Stuebner June 1, 2011, 11:50 a.m. UTC
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(-)

Comments

Sergei Shtylyov June 1, 2011, 4:01 p.m. UTC | #1
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
Heiko Stuebner June 1, 2011, 4:27 p.m. UTC | #2
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
diff mbox

Patch

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);