These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / drivers / staging / lustre / lustre / libcfs / linux / linux-crypto-adler.c
index 5e185fa..5d8d8b7 100644 (file)
@@ -82,6 +82,7 @@ static int adler32_update(struct shash_desc *desc, const u8 *data,
        *cksump = __adler32(*cksump, data, len);
        return 0;
 }
+
 static int __adler32_finup(u32 *cksump, const u8 *data, unsigned int len,
                           u8 *out)
 {
@@ -109,6 +110,7 @@ static int adler32_digest(struct shash_desc *desc, const u8 *data,
        return __adler32_finup(crypto_shash_ctx(desc->tfm), data, len,
                                    out);
 }
+
 static struct shash_alg alg = {
        .setkey         = adler32_setkey,
        .init           = adler32_init,
@@ -129,7 +131,6 @@ static struct shash_alg alg = {
        }
 };
 
-
 int cfs_crypto_adler32_register(void)
 {
        return crypto_register_shash(&alg);