Messages in this thread Patch in this message |  | | From | Yangtao Li <> | Subject | [PATCH 4/5] random: fix typo in add_timer_randomness() | Date | Fri, 7 Jun 2019 14:25:16 -0400 |
| |
s/entimate/estimate
Signed-off-by: Yangtao Li <tiny.windzz@gmail.com> --- drivers/char/random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/random.c b/drivers/char/random.c index f0c834af14a8..885707ac8e3b 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c @@ -1247,7 +1247,7 @@ static void add_timer_randomness(struct timer_rand_state *state, unsigned num) /* * delta is now minimum absolute delta. * Round down by 1 bit on general principles, - * and limit entropy entimate to 12 bits. + * and limit entropy estimate to 12 bits. */ credit_entropy_bits(r, min_t(int, fls(delta>>1), 11)); } -- 2.17.0
|  |