Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53573
b: refs/heads/master
c: 98ac216
h: refs/heads/master
i:
  53571: 11c27e7
v: v3
  • Loading branch information
Pierre Ossman committed May 1, 2007
1 parent fe281fb commit 8cf181c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 29041dbe199b0dff392bf1b9d634357da0b3208f
refs/heads/master: 98ac2162699f7e9880683cb954891817f20b607c
2 changes: 1 addition & 1 deletion trunk/drivers/mmc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ obj-$(CONFIG_MMC) += mmc_core.o
# Media drivers
#
obj-$(CONFIG_MMC_BLOCK) += mmc_block.o
mmc_block-objs := block.o queue.o

#
# Host drivers
Expand All @@ -26,7 +27,6 @@ obj-$(CONFIG_MMC_AT91) += at91_mci.o
obj-$(CONFIG_MMC_TIFM_SD) += tifm_sd.o

mmc_core-y := mmc.o mmc_sysfs.o
mmc_core-$(CONFIG_BLOCK) += mmc_queue.o

ifeq ($(CONFIG_MMC_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/mmc/mmc_block.c → trunk/drivers/mmc/block.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* Block driver for media (i.e., flash cards)
*
* Copyright 2002 Hewlett-Packard Company
* Copyright 2005-2007 Pierre Ossman
*
* Use consistent with the GNU GPL is permitted,
* provided that this copyright notice is
Expand Down Expand Up @@ -37,7 +38,7 @@
#include <asm/system.h>
#include <asm/uaccess.h>

#include "mmc_queue.h"
#include "queue.h"

/*
* max 8 partitions per card
Expand Down
9 changes: 4 additions & 5 deletions trunk/drivers/mmc/mmc_queue.c → trunk/drivers/mmc/queue.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*
* linux/drivers/mmc/mmc_queue.c
* linux/drivers/mmc/queue.c
*
* Copyright (C) 2003 Russell King, All Rights Reserved.
* Copyright 2006-2007 Pierre Ossman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
Expand All @@ -14,7 +15,7 @@

#include <linux/mmc/card.h>
#include <linux/mmc/host.h>
#include "mmc_queue.h"
#include "queue.h"

#define MMC_QUEUE_SUSPENDED (1 << 0)

Expand Down Expand Up @@ -179,7 +180,6 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, spinlock_t *lock
blk_cleanup_queue(mq->queue);
return ret;
}
EXPORT_SYMBOL(mmc_init_queue);

void mmc_cleanup_queue(struct mmc_queue *mq)
{
Expand Down Expand Up @@ -226,7 +226,6 @@ void mmc_queue_suspend(struct mmc_queue *mq)
down(&mq->thread_sem);
}
}
EXPORT_SYMBOL(mmc_queue_suspend);

/**
* mmc_queue_resume - resume a previously suspended MMC request queue
Expand All @@ -247,4 +246,4 @@ void mmc_queue_resume(struct mmc_queue *mq)
spin_unlock_irqrestore(q->queue_lock, flags);
}
}
EXPORT_SYMBOL(mmc_queue_resume);

File renamed without changes.

0 comments on commit 8cf181c

Please sign in to comment.