diff options
| author | Michael S. Tsirkin <[email protected]> | 2016-12-11 06:34:53 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <[email protected]> | 2016-12-16 00:13:41 +0200 |
| commit | 9efeccacd3a486128d3add611dd4cefb5b60a58c (patch) | |
| tree | 5d23034005e2856ac141a91547d39cb38717c72f /include/linux/serial_core.h | |
| parent | 46d832f5e2102cce455672c5a0b8cbe97e27fe42 (diff) | |
linux: drop __bitwise__ everywhere
__bitwise__ used to mean "yes, please enable sparse checks
unconditionally", but now that we dropped __CHECK_ENDIAN__
__bitwise is exactly the same.
There aren't many users, replace it by __bitwise everywhere.
Signed-off-by: Michael S. Tsirkin <[email protected]>
Acked-by: Greg Kroah-Hartman <[email protected]>
Acked-by: Stefan Schmidt <[email protected]>
Acked-by: Krzysztof Kozlowski <[email protected]>
Akced-by: Lee Duncan <[email protected]>
Diffstat (limited to 'include/linux/serial_core.h')
| -rw-r--r-- | include/linux/serial_core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 5d494888a612..5def8e830fb0 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -111,8 +111,8 @@ struct uart_icount { __u32 buf_overrun; }; -typedef unsigned int __bitwise__ upf_t; -typedef unsigned int __bitwise__ upstat_t; +typedef unsigned int __bitwise upf_t; +typedef unsigned int __bitwise upstat_t; struct uart_port { spinlock_t lock; /* port lock */ |
