serial: 8250_exar: Return directly from switch-cases

There are two similar switch-cases which use different style.
Unify them and one more to return from the cases directly.

While at it, add missing default in another switch-case.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Parker Newman <pnewman@connecttech.com>
Link: https://lore.kernel.org/r/20240503171917.2921250-10-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Andy Shevchenko 2024-05-03 20:16:01 +03:00 committed by Greg Kroah-Hartman
parent ee6c49a71a
commit 9b2bff26be

View File

@ -627,6 +627,8 @@ pci_fastcom335_setup(struct exar8250 *priv, struct pci_dev *pcidev,
writeb(0xc0, p + UART_EXAR_MPIOINV_7_0); writeb(0xc0, p + UART_EXAR_MPIOINV_7_0);
writeb(0xc0, p + UART_EXAR_MPIOSEL_7_0); writeb(0xc0, p + UART_EXAR_MPIOSEL_7_0);
break; break;
default:
break;
} }
writeb(0x00, p + UART_EXAR_MPIOINT_7_0); writeb(0x00, p + UART_EXAR_MPIOINT_7_0);
writeb(0x00, p + UART_EXAR_MPIO3T_7_0); writeb(0x00, p + UART_EXAR_MPIO3T_7_0);
@ -723,8 +725,6 @@ static enum cti_port_type cti_get_port_type_xr17c15x_xr17v25x(struct exar8250 *p
struct pci_dev *pcidev, struct pci_dev *pcidev,
unsigned int port_num) unsigned int port_num)
{ {
enum cti_port_type port_type;
switch (pcidev->subsystem_device) { switch (pcidev->subsystem_device) {
// RS232 only cards // RS232 only cards
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_232: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_232:
@ -734,24 +734,17 @@ static enum cti_port_type cti_get_port_type_xr17c15x_xr17v25x(struct exar8250 *p
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_SP_232_NS: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_SP_232_NS:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP_232: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP_232:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP_232_NS: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP_232_NS:
port_type = CTI_PORT_TYPE_RS232; return CTI_PORT_TYPE_RS232;
break;
// 1x RS232, 1x RS422/RS485 // 1x RS232, 1x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_1_1: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_1_1:
port_type = (port_num == 0) ? return (port_num == 0) ? CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
break;
// 2x RS232, 2x RS422/RS485 // 2x RS232, 2x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_2: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_2:
port_type = (port_num < 2) ? return (port_num < 2) ? CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
break;
// 4x RS232, 4x RS422/RS485 // 4x RS232, 4x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_4: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_4:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_4_SP: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_4_SP:
port_type = (port_num < 4) ? return (port_num < 4) ? CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
break;
// RS232/RS422/RS485 HW (jumper) selectable // RS232/RS422/RS485 HW (jumper) selectable
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4:
@ -774,32 +767,24 @@ static enum cti_port_type cti_get_port_type_xr17c15x_xr17v25x(struct exar8250 *p
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_XP_OPTO: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_XP_OPTO:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_4_XPRS_OPTO: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_4_XPRS_OPTO:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP:
port_type = CTI_PORT_TYPE_RS232_422_485_HW; return CTI_PORT_TYPE_RS232_422_485_HW;
break;
// RS422/RS485 HW (jumper) selectable // RS422/RS485 HW (jumper) selectable
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_485: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_485:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_485: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_4_485:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_485: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_485:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_SP_485: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_SP_485:
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP_485: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_8_XPRS_LP_485:
port_type = CTI_PORT_TYPE_RS422_485; return CTI_PORT_TYPE_RS422_485;
break;
// 6x RS232, 2x RS422/RS485 // 6x RS232, 2x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_6_2_SP: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_6_2_SP:
port_type = (port_num < 6) ? return (port_num < 6) ? CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
break;
// 2x RS232, 6x RS422/RS485 // 2x RS232, 6x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_6_SP: case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_6_SP:
port_type = (port_num < 2) ? return (port_num < 2) ? CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
break;
default: default:
dev_err(&pcidev->dev, "unknown/unsupported device\n"); dev_err(&pcidev->dev, "unknown/unsupported device\n");
port_type = CTI_PORT_TYPE_NONE; return CTI_PORT_TYPE_NONE;
} }
return port_type;
} }
/** /**
@ -816,20 +801,15 @@ static enum cti_port_type cti_get_port_type_fpga(struct exar8250 *priv,
struct pci_dev *pcidev, struct pci_dev *pcidev,
unsigned int port_num) unsigned int port_num)
{ {
enum cti_port_type port_type;
switch (pcidev->device) { switch (pcidev->device) {
case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG00X: case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG00X:
case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG01X: case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG01X:
case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_16: case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_16:
port_type = CTI_PORT_TYPE_RS232_422_485_HW; return CTI_PORT_TYPE_RS232_422_485_HW;
break;
default: default:
dev_err(&pcidev->dev, "unknown/unsupported device\n"); dev_err(&pcidev->dev, "unknown/unsupported device\n");
return CTI_PORT_TYPE_NONE; return CTI_PORT_TYPE_NONE;
} }
return port_type;
} }
/** /**
@ -1493,35 +1473,33 @@ static irqreturn_t exar_misc_handler(int irq, void *data)
return IRQ_HANDLED; return IRQ_HANDLED;
} }
static unsigned int exar_get_nr_ports(struct exar8250_board *board, static unsigned int exar_get_nr_ports(struct exar8250_board *board, struct pci_dev *pcidev)
struct pci_dev *pcidev)
{ {
unsigned int nr_ports = 0; if (pcidev->vendor == PCI_VENDOR_ID_ACCESSIO)
return BIT(((pcidev->device & 0x38) >> 3) - 1);
if (pcidev->vendor == PCI_VENDOR_ID_ACCESSIO) { // Check if board struct overrides number of ports
nr_ports = BIT(((pcidev->device & 0x38) >> 3) - 1); if (board->num_ports > 0)
} else if (board->num_ports > 0) { return board->num_ports;
// Check if board struct overrides number of ports
nr_ports = board->num_ports; // Exar encodes # ports in last nibble of PCI Device ID ex. 0358
} else if (pcidev->vendor == PCI_VENDOR_ID_EXAR) { if (pcidev->vendor == PCI_VENDOR_ID_EXAR)
// Exar encodes # ports in last nibble of PCI Device ID ex. 0358 return pcidev->device & 0x0f;
nr_ports = pcidev->device & 0x0f;
} else if (pcidev->vendor == PCI_VENDOR_ID_CONNECT_TECH) { // Handle CTI FPGA cards
// Handle CTI FPGA cards if (pcidev->vendor == PCI_VENDOR_ID_CONNECT_TECH) {
switch (pcidev->device) { switch (pcidev->device) {
case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG00X: case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG00X:
case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG01X: case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_12_XIG01X:
nr_ports = 12; return 12;
break;
case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_16: case PCI_DEVICE_ID_CONNECT_TECH_PCI_XR79X_16:
nr_ports = 16; return 16;
break;
default: default:
break; return 0;
} }
} }
return nr_ports; return 0;
} }
static int static int