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

Fix comment typo multipy -> multiply

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Ralf Baechle and committed by
Jiri Kosina
92a9f14b d766023e

+2 -2
+1 -1
drivers/input/misc/cma3000_d0x.c
··· 58 58 59 59 /* 60 60 * Bit weights in mg for bit 0, other bits need 61 - * multipy factor 2^n. Eight bit is the sign bit. 61 + * multiply factor 2^n. Eight bit is the sign bit. 62 62 */ 63 63 #define BIT_TO_2G 18 64 64 #define BIT_TO_8G 71
+1 -1
sound/oss/vwsnd.c
··· 438 438 * 439 439 * Observe that (mask & -mask) is (1 << low_set_bit_of(mask)). 440 440 * As long as mask is constant, we trust the compiler will change the 441 - * multipy and divide into shifts. 441 + * multiply and divide into shifts. 442 442 */ 443 443 444 444 #define SHIFT_FIELD(val, mask) (((val) * ((mask) & -(mask))) & (mask))