diff options
| author | Vincent Mailhol <mailhol.vincent@wanadoo.fr> | 2025-03-05 17:59:32 +0300 |
|---|---|---|
| committer | Yury Norov <yury.norov@gmail.com> | 2025-03-05 20:00:03 +0300 |
| commit | 0312e94abe484b9ee58c32d2f8ba177e04955b35 (patch) | |
| tree | f8ecaf36ae063434a7b38480e9fd44f14191b975 /include/linux | |
| parent | a30047129e0931fde80dc54785d970aefc50379d (diff) | |
| download | linux-0312e94abe484b9ee58c32d2f8ba177e04955b35.tar.xz | |
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>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/bits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/bits.h b/include/linux/bits.h index 61a75d3f294b..14fd0ca9a6cd 100644 --- a/include/linux/bits.h +++ b/include/linux/bits.h @@ -40,7 +40,7 @@ * Missing asm support * * __GENMASK_U128() depends on _BIT128() which would not work - * in the asm code, as it shifts an 'unsigned __init128' data + * in the asm code, as it shifts an 'unsigned __int128' data * type instead of direct representation of 128 bit constants * such as long and unsigned long. The fundamental problem is * that a 128 bit constant will get silently truncated by the |
