@@ -741,19 +741,19 @@ static enum cti_port_type cti_get_port_type_xr17c15x_xr17v25x(struct exar8250 *p
break;
// 1x RS232, 1x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_1_1:
- port_type = port_num == 0 ?
- CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
+ port_type = port_num == 0 ? CTI_PORT_TYPE_RS232 :
+ CTI_PORT_TYPE_RS422_485;
break;
// 2x RS232, 2x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_2:
- port_type = port_num < 2 ?
- CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
+ port_type = port_num < 2 ? CTI_PORT_TYPE_RS232 :
+ CTI_PORT_TYPE_RS422_485;
break;
// 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_SP:
- port_type = port_num < 4 ?
- CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
+ port_type = port_num < 4 ? CTI_PORT_TYPE_RS232 :
+ CTI_PORT_TYPE_RS422_485;
break;
// RS232/RS422/RS485 HW (jumper) selectable
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2:
@@ -789,13 +789,13 @@ static enum cti_port_type cti_get_port_type_xr17c15x_xr17v25x(struct exar8250 *p
break;
// 6x RS232, 2x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_6_2_SP:
- port_type = port_num < 6 ?
- CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
+ port_type = port_num < 6 ? CTI_PORT_TYPE_RS232 :
+ CTI_PORT_TYPE_RS422_485;
break;
// 2x RS232, 6x RS422/RS485
case PCI_SUBDEVICE_ID_CONNECT_TECH_PCI_UART_2_6_SP:
- port_type = port_num < 2 ?
- CTI_PORT_TYPE_RS232 : CTI_PORT_TYPE_RS422_485;
+ port_type = port_num < 2 ? CTI_PORT_TYPE_RS232 :
+ CTI_PORT_TYPE_RS422_485;
break;
default:
dev_err(&pcidev->dev, "unknown/unsupported device\n");