Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx

* 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx:
async_tx: fix missing braces in async_xor_zero_sum

+2 -1
+2 -1
crypto/async_tx/async_xor.c
··· 263 if (unlikely(!tx)) { 264 async_tx_quiesce(&depend_tx); 265 266 - while (!tx) 267 dma_async_issue_pending(chan); 268 tx = device->device_prep_dma_zero_sum(chan, 269 dma_src, src_cnt, len, result, 270 dma_prep_flags); 271 } 272 273 async_tx_submit(chan, tx, flags, depend_tx, cb_fn, cb_param);
··· 263 if (unlikely(!tx)) { 264 async_tx_quiesce(&depend_tx); 265 266 + while (!tx) { 267 dma_async_issue_pending(chan); 268 tx = device->device_prep_dma_zero_sum(chan, 269 dma_src, src_cnt, len, result, 270 dma_prep_flags); 271 + } 272 } 273 274 async_tx_submit(chan, tx, flags, depend_tx, cb_fn, cb_param);