diff options
author | Adam Buchbinder | 2009-12-11 22:35:39 +0100 |
---|---|---|
committer | Jiri Kosina | 2010-02-04 11:55:45 +0100 |
commit | c41b20e721ea4f6f20f66a66e7f0c3c97a2ca9c2 (patch) | |
tree | 92cd1b2b1cdb871530bb07bbbcbfeaffe1170830 /drivers/char/random.c | |
parent | Fix misspelling of "truly" in a label. (diff) | |
download | kernel-qcow2-linux-c41b20e721ea4f6f20f66a66e7f0c3c97a2ca9c2.tar.gz kernel-qcow2-linux-c41b20e721ea4f6f20f66a66e7f0c3c97a2ca9c2.tar.xz kernel-qcow2-linux-c41b20e721ea4f6f20f66a66e7f0c3c97a2ca9c2.zip |
Fix misspellings of "truly" in comments.
Some comments misspell "truly"; this fixes them. No code changes.
Signed-off-by: Adam Buchbinder <adam.buchbinder@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/char/random.c')
-rw-r--r-- | drivers/char/random.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/random.c b/drivers/char/random.c index 2849713d2231..2fd3d39995d5 100644 --- a/drivers/char/random.c +++ b/drivers/char/random.c @@ -1191,7 +1191,7 @@ const struct file_operations urandom_fops = { void generate_random_uuid(unsigned char uuid_out[16]) { get_random_bytes(uuid_out, 16); - /* Set UUID version to 4 --- truely random generation */ + /* Set UUID version to 4 --- truly random generation */ uuid_out[6] = (uuid_out[6] & 0x0F) | 0x40; /* Set the UUID variant to DCE */ uuid_out[8] = (uuid_out[8] & 0x3F) | 0x80; |