diff options
| -rw-r--r-- | crypto/async_tx/async_tx.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/async_tx/async_tx.c b/crypto/async_tx/async_tx.c index 85eaf7b1c531..e8362c1efa30 100644 --- a/crypto/async_tx/async_tx.c +++ b/crypto/async_tx/async_tx.c | |||
| @@ -137,7 +137,8 @@ async_tx_run_dependencies(struct dma_async_tx_descriptor *tx) | |||
| 137 | spin_lock_bh(&next->lock); | 137 | spin_lock_bh(&next->lock); |
| 138 | next->parent = NULL; | 138 | next->parent = NULL; |
| 139 | _next = next->next; | 139 | _next = next->next; |
| 140 | next->next = NULL; | 140 | if (_next && _next->chan == chan) |
| 141 | next->next = NULL; | ||
| 141 | spin_unlock_bh(&next->lock); | 142 | spin_unlock_bh(&next->lock); |
| 142 | 143 | ||
| 143 | next->tx_submit(next); | 144 | next->tx_submit(next); |
