Skip to content

Commit 0312e94

Browse files
vincent-mailholYuryNorov
authored andcommitted
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>
1 parent a300471 commit 0312e94

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

include/linux/bits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* Missing asm support
4141
*
4242
* __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
4444
* type instead of direct representation of 128 bit constants
4545
* such as long and unsigned long. The fundamental problem is
4646
* that a 128 bit constant will get silently truncated by the

include/uapi/linux/const.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* Missing asm support
3434
*
3535
* __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
3737
* 128 bit constants is not supported in the gcc compiler, as
3838
* they get silently truncated.
3939
*

tools/include/linux/bits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* Missing asm support
4242
*
4343
* __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
4545
* type instead of direct representation of 128 bit constants
4646
* such as long and unsigned long. The fundamental problem is
4747
* that a 128 bit constant will get silently truncated by the

tools/include/uapi/linux/const.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* Missing asm support
3434
*
3535
* __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
3737
* 128 bit constants is not supported in the gcc compiler, as
3838
* they get silently truncated.
3939
*

0 commit comments

Comments
 (0)