staging: ccree: move logical cont. to 1st line
authorGilad Ben-Yossef <gilad@benyossef.com>
Mon, 13 Nov 2017 14:45:33 +0000 (14:45 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Nov 2017 08:20:38 +0000 (09:20 +0100)
Move logical continuations to first line for readability.

Signed-off-by: Gilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ccree/ssi_buffer_mgr.c

index 923a0dfb1c69ad0c2bf1fb1b390196935114ac8f..cda5a30c423cdfc778802d8700e8699c80f014cb 100644 (file)
@@ -1473,8 +1473,8 @@ int cc_map_hash_request_final(struct ssi_drvdata *drvdata, void *ctx,
                                       &dummy, &mapped_nents))) {
                        goto unmap_curr_buff;
                }
-               if (src && mapped_nents == 1
-                    && areq_ctx->data_dma_buf_type == SSI_DMA_BUF_NULL) {
+               if (src && mapped_nents == 1 &&
+                   areq_ctx->data_dma_buf_type == SSI_DMA_BUF_NULL) {
                        memcpy(areq_ctx->buff_sg, src,
                               sizeof(struct scatterlist));
                        areq_ctx->buff_sg->length = nbytes;
@@ -1590,8 +1590,8 @@ int cc_map_hash_request_update(struct ssi_drvdata *drvdata, void *ctx,
                                       &mapped_nents))) {
                        goto unmap_curr_buff;
                }
-               if (mapped_nents == 1
-                    && areq_ctx->data_dma_buf_type == SSI_DMA_BUF_NULL) {
+               if (mapped_nents == 1 &&
+                   areq_ctx->data_dma_buf_type == SSI_DMA_BUF_NULL) {
                        /* only one entry in the SG and no previous data */
                        memcpy(areq_ctx->buff_sg, src,
                               sizeof(struct scatterlist));