crypto: powerpc - Fix initialisation of crc32c context

am: ecdc5b12d7

Change-Id: I65ed50a7326dc80e9cf27715b381b0f0a10f3d04
This commit is contained in:
Daniel Axtens
2017-03-22 12:09:33 +00:00
committed by android-build-merger

View File

@@ -52,7 +52,7 @@ static int crc32c_vpmsum_cra_init(struct crypto_tfm *tfm)
{
u32 *key = crypto_tfm_ctx(tfm);
*key = 0;
*key = ~0;
return 0;
}