diff options
author | Venkatraman S <svenkatr@ti.com> | 2012-04-13 08:24:11 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-05-09 10:08:54 -0400 |
commit | 1b50f5f392e31ab41a272ed3b438f603c09be3f0 (patch) | |
tree | de611bade7e2c2937ccbce6c1a20108975597511 /drivers/mmc/card | |
parent | 3d93576e3442a2becb91290d62f1c105fec1150c (diff) |
mmc: queue: rename mmc_request function
The name mmc_request is used for both the issue function
and a data structure, which creates conflicts in symbol lookups
in editors. Rename the function to mmc_request_fn.
Signed-off-by: Venkatraman S <svenkatr@ti.com>
Reviewed-by: Namjae Jeon <linkinjeon@gmail.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/card')
-rw-r--r-- | drivers/mmc/card/queue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/card/queue.c b/drivers/mmc/card/queue.c index 996f8e36e23d..49af43c97323 100644 --- a/drivers/mmc/card/queue.c +++ b/drivers/mmc/card/queue.c | |||
@@ -96,7 +96,7 @@ static int mmc_queue_thread(void *d) | |||
96 | * on any queue on this host, and attempt to issue it. This may | 96 | * on any queue on this host, and attempt to issue it. This may |
97 | * not be the queue we were asked to process. | 97 | * not be the queue we were asked to process. |
98 | */ | 98 | */ |
99 | static void mmc_request(struct request_queue *q) | 99 | static void mmc_request_fn(struct request_queue *q) |
100 | { | 100 | { |
101 | struct mmc_queue *mq = q->queuedata; | 101 | struct mmc_queue *mq = q->queuedata; |
102 | struct request *req; | 102 | struct request *req; |
@@ -171,7 +171,7 @@ int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, | |||
171 | limit = *mmc_dev(host)->dma_mask; | 171 | limit = *mmc_dev(host)->dma_mask; |
172 | 172 | ||
173 | mq->card = card; | 173 | mq->card = card; |
174 | mq->queue = blk_init_queue(mmc_request, lock); | 174 | mq->queue = blk_init_queue(mmc_request_fn, lock); |
175 | if (!mq->queue) | 175 | if (!mq->queue) |
176 | return -ENOMEM; | 176 | return -ENOMEM; |
177 | 177 | ||