1 From 401eb535cb94e53ba4ff1a04caafe96b7d4d1981 Mon Sep 17 00:00:00 2001
2 From: Andy Green <agreen@localhost.localdomain>
3 Date: Wed, 30 Apr 2008 13:34:14 +0100
4 Subject: [PATCH] clean-sdio-hcd-suspend.patch
6 fix trailing whitespace and function args for suspend.
8 Signed-off-by: Andy Green <andy@openmoko.com>
10 drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c | 12 ++++++------
11 1 files changed, 6 insertions(+), 6 deletions(-)
13 diff --git a/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c b/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c
14 index 7ead7b7..1292020 100644
15 --- a/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c
16 +++ b/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c
17 @@ -1364,11 +1364,11 @@ static int s3c24xx_hcd_remove(struct platform_device * pdev) {
24 -static int s3c24xx_hcd_suspend(struct platform_device * pdev)
25 +static int s3c24xx_hcd_suspend(struct platform_device * pdev, pm_message_t state)
27 - struct s3c24xx_hcd_context * context = &hcd_context;
28 + struct s3c24xx_hcd_context * context = &hcd_context;
31 spin_lock_irqsave(&context->lock, flags);
32 @@ -1389,18 +1389,18 @@ static int s3c24xx_hcd_suspend(struct platform_device * pdev)
33 context->suspend_regs.datsta = readl(context->base + S3C2410_SDIDSTA);
34 context->suspend_regs.fsta = readl(context->base + S3C2410_SDIFSTA);
35 context->suspend_regs.imask = readl(context->base + S3C2440_SDIIMSK);
38 spin_unlock_irqrestore(&context->lock, flags);
42 static int s3c24xx_hcd_resume(struct platform_device * pdev)
45 struct s3c24xx_hcd_context * context = &hcd_context;
48 spin_lock_irqsave(&context->lock, flags);
51 writel(context->suspend_regs.con, context->base + S3C2410_SDICON);
52 writel(context->suspend_regs.pre, context->base + S3C2410_SDIPRE);
53 writel(context->suspend_regs.cmdarg, context->base + S3C2410_SDICMDARG);