crypto: talitos - sparse fix

Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>

authored by

Kim Phillips and committed by
Herbert Xu
c0e741d4 fa86a267

+1 -1
+1 -1
drivers/crypto/talitos.c
··· 848 849 /* adjust (decrease) last one (or two) entry's len to cryptlen */ 850 link_tbl_ptr--; 851 - while (link_tbl_ptr->len <= (-cryptlen)) { 852 /* Empty this entry, and move to previous one */ 853 cryptlen += be16_to_cpu(link_tbl_ptr->len); 854 link_tbl_ptr->len = 0;
··· 848 849 /* adjust (decrease) last one (or two) entry's len to cryptlen */ 850 link_tbl_ptr--; 851 + while (be16_to_cpu(link_tbl_ptr->len) <= (-cryptlen)) { 852 /* Empty this entry, and move to previous one */ 853 cryptlen += be16_to_cpu(link_tbl_ptr->len); 854 link_tbl_ptr->len = 0;