diff options
author | Tiezhu Yang <yangtiezhu@loongson.cn> | 2020-05-07 20:03:35 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-07-06 14:06:08 +0200 |
commit | ea1be1e59b19017e61aa357d524b743ba5602d3c (patch) | |
tree | 19329118359149a0f837283a6a868ea44cfe9f26 | |
parent | 44c413d9a51752056d606bf6f312003ac1740fab (diff) | |
download | linux-stable-ea1be1e59b19017e61aa357d524b743ba5602d3c.tar.gz linux-stable-ea1be1e59b19017e61aa357d524b743ba5602d3c.tar.bz2 linux-stable-ea1be1e59b19017e61aa357d524b743ba5602d3c.zip |
serial: Remove duplicated macro definition of port type
There exists the same macro definition of port type from 0 to 13
in include/uapi/linux/serial.h, remove these duplicated code in
include/uapi/linux/serial_core.h which includes the former header.
Acked-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
Link: https://lore.kernel.org/r/1588853015-28392-1-git-send-email-yangtiezhu@loongson.cn
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | include/uapi/linux/serial_core.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/uapi/linux/serial_core.h b/include/uapi/linux/serial_core.h index 8ec3dd742ea4..851b982f8c4b 100644 --- a/include/uapi/linux/serial_core.h +++ b/include/uapi/linux/serial_core.h @@ -26,20 +26,6 @@ /* * The type definitions. These are from Ted Ts'o's serial.h */ -#define PORT_UNKNOWN 0 -#define PORT_8250 1 -#define PORT_16450 2 -#define PORT_16550 3 -#define PORT_16550A 4 -#define PORT_CIRRUS 5 -#define PORT_16650 6 -#define PORT_16650V2 7 -#define PORT_16750 8 -#define PORT_STARTECH 9 -#define PORT_16C950 10 -#define PORT_16654 11 -#define PORT_16850 12 -#define PORT_RSA 13 #define PORT_NS16550A 14 #define PORT_XSCALE 15 #define PORT_RM9000 16 /* PMC-Sierra RM9xxx internal UART */ |