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

treewide: fix typo 'unsigned __init128' -> 'unsigned __int128'

"int" was misspelled as "init" the code comments in the bits.h and
const.h files. Fix the typo.

CC: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Signed-off-by: Yury Norov <yury.norov@gmail.com>

authored by

Vincent Mailhol and committed by
Yury Norov
0312e94a a3004712

+4 -4
+1 -1
include/linux/bits.h
··· 40 40 * Missing asm support 41 41 * 42 42 * __GENMASK_U128() depends on _BIT128() which would not work 43 - * in the asm code, as it shifts an 'unsigned __init128' data 43 + * in the asm code, as it shifts an 'unsigned __int128' data 44 44 * type instead of direct representation of 128 bit constants 45 45 * such as long and unsigned long. The fundamental problem is 46 46 * that a 128 bit constant will get silently truncated by the
+1 -1
include/uapi/linux/const.h
··· 33 33 * Missing asm support 34 34 * 35 35 * __BIT128() would not work in the asm code, as it shifts an 36 - * 'unsigned __init128' data type as direct representation of 36 + * 'unsigned __int128' data type as direct representation of 37 37 * 128 bit constants is not supported in the gcc compiler, as 38 38 * they get silently truncated. 39 39 *
+1 -1
tools/include/linux/bits.h
··· 41 41 * Missing asm support 42 42 * 43 43 * __GENMASK_U128() depends on _BIT128() which would not work 44 - * in the asm code, as it shifts an 'unsigned __init128' data 44 + * in the asm code, as it shifts an 'unsigned __int128' data 45 45 * type instead of direct representation of 128 bit constants 46 46 * such as long and unsigned long. The fundamental problem is 47 47 * that a 128 bit constant will get silently truncated by the
+1 -1
tools/include/uapi/linux/const.h
··· 33 33 * Missing asm support 34 34 * 35 35 * __BIT128() would not work in the asm code, as it shifts an 36 - * 'unsigned __init128' data type as direct representation of 36 + * 'unsigned __int128' data type as direct representation of 37 37 * 128 bit constants is not supported in the gcc compiler, as 38 38 * they get silently truncated. 39 39 *