aboutsummaryrefslogtreecommitdiff
path: root/drivers/sdio
diff options
context:
space:
mode:
authorAndy Green <agreen@localhost.localdomain>2008-11-19 17:09:42 +0000
committerAndy Green <agreen@pads.home.warmcat.com>2008-11-19 17:09:42 +0000
commit2a8759fa7747166d5888afdc127ab89d8a7f0f17 (patch)
treed406e1ccd9121370990fea661cbb086cb06f6dd4 /drivers/sdio
parent13a6a30e83edf90374d5ce4e336315a96ebf394d (diff)
clean-sdio-hcd-suspend.patch
fix trailing whitespace and function args for suspend. Signed-off-by: Andy Green <andy@openmoko.com>
Diffstat (limited to 'drivers/sdio')
-rw-r--r--drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c b/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c
index fdc69a0f6a3..edb8523907e 100644
--- a/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c
+++ b/drivers/sdio/hcd/s3c24xx/s3c24xx_hcd.c
@@ -1365,11 +1365,11 @@ static int s3c24xx_hcd_remove(struct platform_device * pdev) {
return 0;
}
-#ifdef CONFIG_PM
+#ifdef CONFIG_PM
-static int s3c24xx_hcd_suspend(struct platform_device * pdev)
+static int s3c24xx_hcd_suspend(struct platform_device * pdev, pm_message_t state)
{
- struct s3c24xx_hcd_context * context = &hcd_context;
+ struct s3c24xx_hcd_context * context = &hcd_context;
unsigned long flags;
spin_lock_irqsave(&context->lock, flags);
@@ -1390,18 +1390,18 @@ static int s3c24xx_hcd_suspend(struct platform_device * pdev)
context->suspend_regs.datsta = readl(context->base + S3C2410_SDIDSTA);
context->suspend_regs.fsta = readl(context->base + S3C2410_SDIFSTA);
context->suspend_regs.imask = readl(context->base + S3C2440_SDIIMSK);
-
+
spin_unlock_irqrestore(&context->lock, flags);
return 0;
}
static int s3c24xx_hcd_resume(struct platform_device * pdev)
-{
+{
struct s3c24xx_hcd_context * context = &hcd_context;
unsigned long flags;
spin_lock_irqsave(&context->lock, flags);
-
+
writel(context->suspend_regs.con, context->base + S3C2410_SDICON);
writel(context->suspend_regs.pre, context->base + S3C2410_SDIPRE);
writel(context->suspend_regs.cmdarg, context->base + S3C2410_SDICMDARG);