Commit d4f3d4b1 authored by Jeremy Sowden's avatar Jeremy Sowden Committed by Greg Kroah-Hartman

staging: ccree: removed spaces after opening parentheses.

Removed spaces after opening parentheses in ssi_ivgen.c.
Signed-off-by: default avatarJeremy Sowden <jeremy@azazel.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4f71fecd
...@@ -64,7 +64,7 @@ static int ssi_ivgen_generate_pool( ...@@ -64,7 +64,7 @@ static int ssi_ivgen_generate_pool(
{ {
unsigned int idx = *iv_seq_len; unsigned int idx = *iv_seq_len;
if ( (*iv_seq_len + SSI_IVPOOL_GEN_SEQ_LEN) > SSI_IVPOOL_SEQ_LEN) { if ((*iv_seq_len + SSI_IVPOOL_GEN_SEQ_LEN) > SSI_IVPOOL_SEQ_LEN) {
/* The sequence will be longer than allowed */ /* The sequence will be longer than allowed */
return -EINVAL; return -EINVAL;
} }
...@@ -251,13 +251,13 @@ int ssi_ivgen_getiv( ...@@ -251,13 +251,13 @@ int ssi_ivgen_getiv(
(iv_out_size != CTR_RFC3686_IV_SIZE)) { (iv_out_size != CTR_RFC3686_IV_SIZE)) {
return -EINVAL; return -EINVAL;
} }
if ( (iv_out_dma_len + 1) > SSI_IVPOOL_SEQ_LEN) { if ((iv_out_dma_len + 1) > SSI_IVPOOL_SEQ_LEN) {
/* The sequence will be longer than allowed */ /* The sequence will be longer than allowed */
return -EINVAL; return -EINVAL;
} }
//check that number of generated IV is limited to max dma address iv buffer size //check that number of generated IV is limited to max dma address iv buffer size
if ( iv_out_dma_len > SSI_MAX_IVGEN_DMA_ADDRESSES) { if (iv_out_dma_len > SSI_MAX_IVGEN_DMA_ADDRESSES) {
/* The sequence will be longer than allowed */ /* The sequence will be longer than allowed */
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment