diff options
Diffstat (limited to 'crypto/async_tx/async_tx.c')
-rw-r--r-- | crypto/async_tx/async_tx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/async_tx/async_tx.c b/crypto/async_tx/async_tx.c index f39777f30f60..562882189de5 100644 --- a/crypto/async_tx/async_tx.c +++ b/crypto/async_tx/async_tx.c | |||
@@ -361,13 +361,13 @@ static void __exit async_tx_exit(void) | |||
361 | } | 361 | } |
362 | 362 | ||
363 | /** | 363 | /** |
364 | * async_tx_find_channel - find a channel to carry out the operation or let | 364 | * __async_tx_find_channel - find a channel to carry out the operation or let |
365 | * the transaction execute synchronously | 365 | * the transaction execute synchronously |
366 | * @depend_tx: transaction dependency | 366 | * @depend_tx: transaction dependency |
367 | * @tx_type: transaction type | 367 | * @tx_type: transaction type |
368 | */ | 368 | */ |
369 | struct dma_chan * | 369 | struct dma_chan * |
370 | async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx, | 370 | __async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx, |
371 | enum dma_transaction_type tx_type) | 371 | enum dma_transaction_type tx_type) |
372 | { | 372 | { |
373 | /* see if we can keep the chain on one channel */ | 373 | /* see if we can keep the chain on one channel */ |
@@ -383,7 +383,7 @@ async_tx_find_channel(struct dma_async_tx_descriptor *depend_tx, | |||
383 | } else | 383 | } else |
384 | return NULL; | 384 | return NULL; |
385 | } | 385 | } |
386 | EXPORT_SYMBOL_GPL(async_tx_find_channel); | 386 | EXPORT_SYMBOL_GPL(__async_tx_find_channel); |
387 | #else | 387 | #else |
388 | static int __init async_tx_init(void) | 388 | static int __init async_tx_init(void) |
389 | { | 389 | { |