aboutsummaryrefslogtreecommitdiff
path: root/block
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-03-04 11:30:18 +0100
committerJens Axboe <jens.axboe@oracle.com>2008-03-04 11:30:18 +0100
commit448da4d262b5db90817ce853726ff4d9b0c2bf48 (patch)
tree01fecb0f9a1d89eb6c418320d3124d2ff92fae83 /block
parent68d95b585f1b67b3c89ce0eb934e221ebeeb5c61 (diff)
block: remove extern on function definition
Intoduced between 2.6.25-rc2 and -rc3 block/blk-settings.c:319:12: warning: function 'blk_queue_dma_drain' with external linkage has definition Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-settings.c b/block/blk-settings.c
index 18fab5193d81..1344a0ea5cc6 100644
--- a/block/blk-settings.c
+++ b/block/blk-settings.c
@@ -332,7 +332,7 @@ EXPORT_SYMBOL(blk_queue_dma_pad);
* device can support otherwise there won't be room for the drain
* buffer.
*/
-extern int blk_queue_dma_drain(struct request_queue *q,
+int blk_queue_dma_drain(struct request_queue *q,
dma_drain_needed_fn *dma_drain_needed,
void *buf, unsigned int size)
{