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

Commit cfb73f89 authored by Antoine Tenart's avatar Antoine Tenart Committed by Herbert Xu
Browse files

crypto: inside-secure - use the base_end pointer in ring rollback



A base_end pointer is set and provided. Use it in the ring rollback
function to avoid using build-in defines.

Signed-off-by: default avatarAntoine Tenart <antoine.tenart@free-electrons.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent e826934e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ void safexcel_ring_rollback_wptr(struct safexcel_crypto_priv *priv,
		return;

	if (ring->write == ring->base)
		ring->write += (EIP197_DEFAULT_RING_SIZE - 1) * ring->offset;
		ring->write = ring->base_end - ring->offset;
	else
		ring->write -= ring->offset;