diff options
author | Uri Simchoni <uri@jdland.co.il> | 2010-04-08 12:25:56 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2010-04-13 04:50:47 -0400 |
commit | 6bc6fcd609080461682c5cc0a1e3bf4345d6419d (patch) | |
tree | 89f6df9bf0872ce7f448be78efaf174fba6598ce /drivers/crypto/mv_cesa.c | |
parent | 0328ac267564089d9cedfb568f936d30a6debd21 (diff) |
crypto: mv_cesa - Remove compiler warning in mv_cesa driver
Remove compiler warning
Signed-off-by: Uri Simchoni <uri@jdland.co.il>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/mv_cesa.c')
-rw-r--r-- | drivers/crypto/mv_cesa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/crypto/mv_cesa.c b/drivers/crypto/mv_cesa.c index 3e60ba909434..37d9f0688e75 100644 --- a/drivers/crypto/mv_cesa.c +++ b/drivers/crypto/mv_cesa.c | |||
@@ -178,6 +178,7 @@ static void mv_process_current_q(int first_block) | |||
178 | op.config = CFG_OP_CRYPT_ONLY | CFG_ENCM_AES | CFG_ENC_MODE_ECB; | 178 | op.config = CFG_OP_CRYPT_ONLY | CFG_ENCM_AES | CFG_ENC_MODE_ECB; |
179 | break; | 179 | break; |
180 | case COP_AES_CBC: | 180 | case COP_AES_CBC: |
181 | default: | ||
181 | op.config = CFG_OP_CRYPT_ONLY | CFG_ENCM_AES | CFG_ENC_MODE_CBC; | 182 | op.config = CFG_OP_CRYPT_ONLY | CFG_ENCM_AES | CFG_ENC_MODE_CBC; |
182 | op.enc_iv = ENC_IV_POINT(SRAM_DATA_IV) | | 183 | op.enc_iv = ENC_IV_POINT(SRAM_DATA_IV) | |
183 | ENC_IV_BUF_POINT(SRAM_DATA_IV_BUF); | 184 | ENC_IV_BUF_POINT(SRAM_DATA_IV_BUF); |