random: cleanup integer types
authorJason A. Donenfeld <Jason@zx2c4.com>
Sun, 9 Jan 2022 16:48:58 +0000 (17:48 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Tue, 18 Jan 2022 12:03:55 +0000 (13:03 +0100)
commitd38bb0853589c939573ea50e9cb64f733e0e273d
treed3681c0eb330325779e30c44b47e34ed87cce1da
parent91ec0fe138f107232cb36bc6112211db37cb5306
random: cleanup integer types

Rather than using the userspace type, __uXX, switch to using uXX. And
rather than using variously chosen `char *` or `unsigned char *`, use
`u8 *` uniformly for things that aren't strings, in the case where we
are doing byte-by-byte traversal.

Reviewed-by: Dominik Brodowski <linux@dominikbrodowski.net>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
drivers/char/random.c