aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorWilliam Zijl <postmaster@gusted.xyz>2022-10-01 17:36:21 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2022-10-01 23:37:51 +0200
commitd687772e6d2cbffd91fdda64812f79192c1e7ca0 (patch)
tree4c40b16311ab2c7023e483010baf2fb7a065b033 /drivers/char
parentrandom: schedule jitter credit for next jiffy, not in two jiffies (diff)
downloadlinux-dev-d687772e6d2cbffd91fdda64812f79192c1e7ca0.tar.xz
linux-dev-d687772e6d2cbffd91fdda64812f79192c1e7ca0.zip
random: fix typos in get_random_bytes() comment
Remove extra whitespace and add a missing word to a sentence describing get_random_bytes(). Signed-off-by: William Zijl <postmaster@gusted.xyz> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/random.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/char/random.c b/drivers/char/random.c
index fdf15f5c87dd..a007e3dad80f 100644
--- a/drivers/char/random.c
+++ b/drivers/char/random.c
@@ -382,11 +382,11 @@ static void _get_random_bytes(void *buf, size_t len)
}
/*
- * This function is the exported kernel interface. It returns some
- * number of good random numbers, suitable for key generation, seeding
- * TCP sequence numbers, etc. In order to ensure that the randomness
- * by this function is okay, the function wait_for_random_bytes()
- * should be called and return 0 at least once at any point prior.
+ * This function is the exported kernel interface. It returns some number of
+ * good random numbers, suitable for key generation, seeding TCP sequence
+ * numbers, etc. In order to ensure that the randomness returned by this
+ * function is okay, the function wait_for_random_bytes() should be called and
+ * return 0 at least once at any point prior.
*/
void get_random_bytes(void *buf, size_t len)
{