Skip to content

Commit

Permalink
ARM: S3C24xx: Fix missing struct for s3c2410_dma_chan
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Heiko Stuebner authored and Kukjin Kim committed Jun 4, 2011
1 parent 74cdfa5 commit e469818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-s3c24xx/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit e469818

Please sign in to comment.