Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a67ed8d authored by Daniel Axtens's avatar Daniel Axtens Committed by android-build-merger
Browse files

crypto: powerpc - Fix initialisation of crc32c context

am: ecdc5b12

Change-Id: I65ed50a7326dc80e9cf27715b381b0f0a10f3d04
parents 7298964b ecdc5b12
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}