diff options
author | WangBo <[email protected]> | 2019-03-07 16:26:43 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2019-03-07 18:31:59 -0800 |
commit | 30ff9ec457e66fcd73567b830aaca21e5833cf84 (patch) | |
tree | 82973723bec23df3118faff74db5a3b1b017a1c7 | |
parent | b95c4d18d5936c9f2c1a39347d73acb3e523ca24 (diff) |
include/linux/types.h: use "unsigned int" instead of "unsigned"
Use "unsigned int" instead of "unsigned", to make code more clear.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: WangBo <[email protected]>
Reviewed-by: Masahiro Yamada <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | include/linux/types.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/types.h b/include/linux/types.h index c2615d6a019e..cc0dbbe551d5 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -155,9 +155,9 @@ typedef u64 dma_addr_t; typedef u32 dma_addr_t; #endif -typedef unsigned __bitwise gfp_t; -typedef unsigned __bitwise slab_flags_t; -typedef unsigned __bitwise fmode_t; +typedef unsigned int __bitwise gfp_t; +typedef unsigned int __bitwise slab_flags_t; +typedef unsigned int __bitwise fmode_t; #ifdef CONFIG_PHYS_ADDR_T_64BIT typedef u64 phys_addr_t; |