summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2007-05-09 11:32:34 +0200
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-09 21:30:44 +0200
commit01f41ec7b36e14da18a4e162ef697ae358f36e37 (patch)
tree14217d73b643277b359dd923b487f34d3268fd49
parentDocumentation/i386/boot.txt: update and correct (diff)
downloadlinux-01f41ec7b36e14da18a4e162ef697ae358f36e37.tar.xz
linux-01f41ec7b36e14da18a4e162ef697ae358f36e37.zip
mmc build fix
Cc: Pierre Ossman <drzeus@drzeus.cx> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--drivers/mmc/core/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index b6c16704aaab..7385acfa1dd9 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -501,9 +501,9 @@ void mmc_detect_change(struct mmc_host *host, unsigned long delay)
{
#ifdef CONFIG_MMC_DEBUG
unsigned long flags;
- spin_lock_irqsave(host->lock, flags);
+ spin_lock_irqsave(&host->lock, flags);
BUG_ON(host->removed);
- spin_unlock_irqrestore(host->lock, flags);
+ spin_unlock_irqrestore(&host->lock, flags);
#endif
mmc_schedule_delayed_work(&host->detect, delay);