Merge tag 'docs/v5.10-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[linux-2.6-microblaze.git] / drivers / crypto / atmel-aes.c
index a6e1449..b1d2860 100644 (file)
@@ -1539,7 +1539,7 @@ static int atmel_aes_gcm_length(struct atmel_aes_dev *dd)
 
        /* Write incr32(J0) into IV. */
        j0_lsw = j0[3];
-       j0[3] = cpu_to_be32(be32_to_cpu(j0[3]) + 1);
+       be32_add_cpu(&j0[3], 1);
        atmel_aes_write_block(dd, AES_IVR(0), j0);
        j0[3] = j0_lsw;