Skip to content

Commit 5d5ead5

Browse files
andy-shevgregkh
authored andcommitted
serial: 8250_pericom: Revert "Re-enable higher baud rates"
UPF_MAGIC_MULTIPLIER is userspace available bit and can be changed at any time. There is no sense to rely on it to be always present. This reverts commit b4ccaf5. Note, that code was not reliably worked before, hence it implies no functional change. Signed-off-by: Andy Shevchenko <[email protected]> Fixes: b4ccaf5 ("serial: 8250_pericom: Re-enable higher baud rates") Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent c816b2e commit 5d5ead5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/tty/serial/8250/8250_pericom.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ static int pericom8250_probe(struct pci_dev *pdev, const struct pci_device_id *i
117117
uart.port.private_data = pericom;
118118
uart.port.iotype = UPIO_PORT;
119119
uart.port.uartclk = 921600 * 16;
120-
uart.port.flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ | UPF_MAGIC_MULTIPLIER;
120+
uart.port.flags = UPF_SKIP_TEST | UPF_BOOT_AUTOCONF | UPF_SHARE_IRQ;
121121
uart.port.set_divisor = pericom_do_set_divisor;
122122
for (i = 0; i < nr && i < maxnr; i++) {
123123
unsigned int offset = (i == 3 && nr == 4) ? 0x38 : i * 0x8;

0 commit comments

Comments
 (0)