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

Configure Feed

Select the types of activity you want to include in your feed.

tty: actually undefine superseded ASYNC flags

Some kernel-internal ASYNC flags have been superseded by tty-port flags
and should no longer be used by kernel drivers.

Fix the misspelled "__KERNEL__" compile guards which failed their sole
purpose to break out-of-tree drivers that have not yet been updated.

Fixes: 5c0517fefc92 ("tty: core: Undefine ASYNC_* flags superceded by TTY_PORT* flags")
Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20210407095208.31838-2-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Johan Hovold and committed by
Greg Kroah-Hartman
d09845e9 b8958546

+2 -2
+2 -2
include/uapi/linux/tty_flags.h
··· 39 39 * WARNING: These flags are no longer used and have been superceded by the 40 40 * TTY_PORT_ flags in the iflags field (and not userspace-visible) 41 41 */ 42 - #ifndef _KERNEL_ 42 + #ifndef __KERNEL__ 43 43 #define ASYNCB_INITIALIZED 31 /* Serial port was initialized */ 44 44 #define ASYNCB_SUSPENDED 30 /* Serial port is suspended */ 45 45 #define ASYNCB_NORMAL_ACTIVE 29 /* Normal device is active */ ··· 81 81 #define ASYNC_SPD_WARP (ASYNC_SPD_HI|ASYNC_SPD_SHI) 82 82 #define ASYNC_SPD_MASK (ASYNC_SPD_HI|ASYNC_SPD_VHI|ASYNC_SPD_SHI) 83 83 84 - #ifndef _KERNEL_ 84 + #ifndef __KERNEL__ 85 85 /* These flags are no longer used (and were always masked from userspace) */ 86 86 #define ASYNC_INITIALIZED (1U << ASYNCB_INITIALIZED) 87 87 #define ASYNC_NORMAL_ACTIVE (1U << ASYNCB_NORMAL_ACTIVE)