Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Adam Buchbinder and committed by
Jiri Kosina
c41b20e7 a089377f

+8 -8
+1 -1
drivers/char/random.c
··· 1191 1191 void generate_random_uuid(unsigned char uuid_out[16]) 1192 1192 { 1193 1193 get_random_bytes(uuid_out, 16); 1194 - /* Set UUID version to 4 --- truely random generation */ 1194 + /* Set UUID version to 4 --- truly random generation */ 1195 1195 uuid_out[6] = (uuid_out[6] & 0x0F) | 0x40; 1196 1196 /* Set the UUID variant to DCE */ 1197 1197 uuid_out[8] = (uuid_out[8] & 0x3F) | 0x80;
+1 -1
drivers/gpu/drm/radeon/radeon_state.c
··· 1065 1065 /* judging by the first tile offset needed, could possibly 1066 1066 directly address/clear 4x4 tiles instead of 8x2 * 4x4 1067 1067 macro tiles, though would still need clear mask for 1068 - right/bottom if truely 4x4 granularity is desired ? */ 1068 + right/bottom if truly 4x4 granularity is desired ? */ 1069 1069 OUT_RING(tileoffset * 16); 1070 1070 /* the number of tiles to clear */ 1071 1071 OUT_RING(nrtilesx + 1);
+1 -1
drivers/net/cs89x0.c
··· 580 580 } 581 581 582 582 #ifdef CONFIG_SH_HICOSH4 583 - /* truely reset the chip */ 583 + /* truly reset the chip */ 584 584 writeword(ioaddr, ADD_PORT, 0x0114); 585 585 writeword(ioaddr, DATA_PORT, 0x0040); 586 586 #endif
+1 -1
fs/dlm/member.c
··· 312 312 /* 313 313 * This in_recovery lock does two things: 314 314 * 1) Keeps this function from returning until all threads are out 315 - * of locking routines and locking is truely stopped. 315 + * of locking routines and locking is truly stopped. 316 316 * 2) Keeps any new requests from being processed until it's unlocked 317 317 * when recovery is complete. 318 318 */
+1 -1
fs/namei.c
··· 2556 2556 * e) conversion from fhandle to dentry may come in the wrong moment - when 2557 2557 * we are removing the target. Solution: we will have to grab ->i_mutex 2558 2558 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on 2559 - * ->i_mutex on parents, which works but leads to some truely excessive 2559 + * ->i_mutex on parents, which works but leads to some truly excessive 2560 2560 * locking]. 2561 2561 */ 2562 2562 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
+1 -1
include/math-emu/op-common.h
··· 29 29 _FP_FRAC_DECL_##wc(X) 30 30 31 31 /* 32 - * Finish truely unpacking a native fp value by classifying the kind 32 + * Finish truly unpacking a native fp value by classifying the kind 33 33 * of fp value and normalizing both the exponent and the fraction. 34 34 */ 35 35
+2 -2
kernel/trace/ring_buffer.c
··· 2541 2541 * @buffer: The ring buffer to enable writes 2542 2542 * 2543 2543 * Note, multiple disables will need the same number of enables 2544 - * to truely enable the writing (much like preempt_disable). 2544 + * to truly enable the writing (much like preempt_disable). 2545 2545 */ 2546 2546 void ring_buffer_record_enable(struct ring_buffer *buffer) 2547 2547 { ··· 2577 2577 * @cpu: The CPU to enable. 2578 2578 * 2579 2579 * Note, multiple disables will need the same number of enables 2580 - * to truely enable the writing (much like preempt_disable). 2580 + * to truly enable the writing (much like preempt_disable). 2581 2581 */ 2582 2582 void ring_buffer_record_enable_cpu(struct ring_buffer *buffer, int cpu) 2583 2583 {