diff options
author | Heiko Stuebner <heiko@sntech.de> | 2011-06-02 12:56:39 +0200 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-06-03 18:36:52 -0700 |
commit | e4698188444a639ac9a3cfb3e06006dd1d4e7fcc (patch) | |
tree | d8f9170e9c617fea23ded9bfab043e1d1dc7a18d /arch/arm/plat-s3c24xx | |
parent | 74cdfa538d433dde9720ae02ac48a7be8c0ec3fb (diff) |
ARM: S3C24xx: Fix missing struct for s3c2410_dma_chan
s3c2410_dma_chan is not a type itself, so struct is required.
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-s3c24xx')
-rw-r--r-- | 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 c10d10c56e2e..2abf9660bc6c 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); |