mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-23 21:11:51 -05:00
serial: exar: remove old Connect Tech setup
Preparatory patch removing existing Connect Tech setup code and CONNECT_DEVICE macro. Subsequent patches in this series will add in new UART family specific setup code and new device definition macros to allow for supporting CTI serial cards with Exar PCI IDs and CTI PCI IDs. Signed-off-by: Parker Newman <pnewman@connecttech.com> Link: https://lore.kernel.org/r/06a04b6c683ca20c50646cc0836be869c2dacd87.1713382717.git.pnewman@connecttech.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
8c467f3300
commit
c69fddf12f
@@ -358,17 +358,6 @@ pci_fastcom335_setup(struct exar8250 *priv, struct pci_dev *pcidev,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
pci_connect_tech_setup(struct exar8250 *priv, struct pci_dev *pcidev,
|
||||
struct uart_8250_port *port, int idx)
|
||||
{
|
||||
unsigned int offset = idx * 0x200;
|
||||
unsigned int baud = 1843200;
|
||||
|
||||
port->port.uartclk = baud * 16;
|
||||
return default_setup(priv, pcidev, idx, offset, port);
|
||||
}
|
||||
|
||||
static int
|
||||
pci_xr17c154_setup(struct exar8250 *priv, struct pci_dev *pcidev,
|
||||
struct uart_8250_port *port, int idx)
|
||||
@@ -849,10 +838,6 @@ static const struct exar8250_board pbn_fastcom335_8 = {
|
||||
.setup = pci_fastcom335_setup,
|
||||
};
|
||||
|
||||
static const struct exar8250_board pbn_connect = {
|
||||
.setup = pci_connect_tech_setup,
|
||||
};
|
||||
|
||||
static const struct exar8250_board pbn_exar_ibm_saturn = {
|
||||
.num_ports = 1,
|
||||
.setup = pci_xr17c154_setup,
|
||||
@@ -897,15 +882,6 @@ static const struct exar8250_board pbn_exar_XR17V8358 = {
|
||||
.exit = pci_xr17v35x_exit,
|
||||
};
|
||||
|
||||
#define CONNECT_DEVICE(devid, sdevid, bd) { \
|
||||
PCI_DEVICE_SUB( \
|
||||
PCI_VENDOR_ID_EXAR, \
|
||||
PCI_DEVICE_ID_EXAR_##devid, \
|
||||
PCI_SUBVENDOR_ID_CONNECT_TECH, \
|
||||
PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_##sdevid), 0, 0, \
|
||||
(kernel_ulong_t)&bd \
|
||||
}
|
||||
|
||||
#define EXAR_DEVICE(vend, devid, bd) { PCI_DEVICE_DATA(vend, devid, &bd) }
|
||||
|
||||
#define IBM_DEVICE(devid, sdevid, bd) { \
|
||||
@@ -935,19 +911,6 @@ static const struct pci_device_id exar_pci_tbl[] = {
|
||||
EXAR_DEVICE(ACCESSIO, COM_4SM, pbn_exar_XR17C15x),
|
||||
EXAR_DEVICE(ACCESSIO, COM_8SM, pbn_exar_XR17C15x),
|
||||
|
||||
CONNECT_DEVICE(XR17C152, UART_2_232, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C154, UART_4_232, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C158, UART_8_232, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C152, UART_1_1, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C154, UART_2_2, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C158, UART_4_4, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C152, UART_2, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C154, UART_4, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C158, UART_8, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C152, UART_2_485, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C154, UART_4_485, pbn_connect),
|
||||
CONNECT_DEVICE(XR17C158, UART_8_485, pbn_connect),
|
||||
|
||||
IBM_DEVICE(XR17C152, SATURN_SERIAL_ONE_PORT, pbn_exar_ibm_saturn),
|
||||
|
||||
/* USRobotics USR298x-OEM PCI Modems */
|
||||
|
||||
Reference in New Issue
Block a user