[S390] prng: fix pointer arithmetic

The git commit c708c57e247775928b9a6bce7b4d8d14883bf39b fixed the
access beyond the end of the stack in prng_seed but the pointer
arithmetic is still incorrect. The calculation has been off by
a factor of 64, now it is only off by a factor of 8. prng_seed
is called with a maximum of 16 for nbytes, small enough that
the incorrect calculation stays insides the limits of the stack.
Place parentheses for correct pointer arithmetic.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by Martin Schwidefsky and committed by Martin Schwidefsky ed961581 8e10cd74

+1 -1
+1 -1
arch/s390/crypto/prng.c
··· 76 77 /* Add the entropy */ 78 while (nbytes >= 8) { 79 - *((__u64 *)parm_block) ^= *((__u64 *)buf+i); 80 prng_add_entropy(); 81 i += 8; 82 nbytes -= 8;
··· 76 77 /* Add the entropy */ 78 while (nbytes >= 8) { 79 + *((__u64 *)parm_block) ^= *((__u64 *)(buf+i)); 80 prng_add_entropy(); 81 i += 8; 82 nbytes -= 8;