diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2023-09-22 08:15:22 +0200 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2023-10-19 10:30:43 +0200 |
commit | b7a10da0268a5d255bebe1d8697dc3f0b26fc3e2 (patch) | |
tree | 02fc089cd276ef7e60fac9dca7ca166a1a59afb1 /drivers/tty/serial/8250 | |
parent | d5f4e1f2fcd85c3c361e73fa3c8f1b8fdb55ae0a (diff) | |
download | linux-stable-b7a10da0268a5d255bebe1d8697dc3f0b26fc3e2.tar.gz linux-stable-b7a10da0268a5d255bebe1d8697dc3f0b26fc3e2.tar.bz2 linux-stable-b7a10da0268a5d255bebe1d8697dc3f0b26fc3e2.zip |
serial: 8250: remove AR7 support
AR7 is going to be removed from the Kernel, so remove its type
definition from 8250 code. As with previous removals, I checked with
Debian Code Search that 'PORT_AR7' is not used in userspace.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Diffstat (limited to 'drivers/tty/serial/8250')
-rw-r--r-- | drivers/tty/serial/8250/8250_port.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/tty/serial/8250/8250_port.c b/drivers/tty/serial/8250/8250_port.c index 141627370aab..0e3a9ec7af94 100644 --- a/drivers/tty/serial/8250/8250_port.c +++ b/drivers/tty/serial/8250/8250_port.c @@ -170,13 +170,6 @@ static const struct serial8250_config uart_config[] = { .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, .flags = UART_CAP_FIFO, }, - [PORT_AR7] = { - .name = "AR7", - .fifo_size = 16, - .tx_loadsz = 16, - .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00, - .flags = UART_CAP_FIFO /* | UART_CAP_AFE */, - }, [PORT_U6_16550A] = { .name = "U6_16550A", .fifo_size = 64, |