View | Details | Raw Unified | Return to bug 4270 | Differences between
and this patch

Collapse All | Expand All

(-)drivers/serial/8250.c (+10 lines)
Lines 359-364 Link Here
359
			serial_outp(p, UART_LCR, 0);
359
			serial_outp(p, UART_LCR, 0);
360
		}
360
		}
361
	}
361
	}
362
	if (p->capabilities & UART_NATSEMI && !sleep) {
363
		u8 excr1;
364
365
		serial_outp(p, UART_LCR, 0xE0);
366
		excr1 = serial_in(p, 0x04);
367
		excr1 &= ~0xb0;
368
		excr1 |= 0x10;
369
		serial_outp(p, 0x04, excr1);
370
		serial_outp(p, UART_LCR, 0);
371
	}
362
}
372
}
363
373
364
#ifdef CONFIG_SERIAL_8250_RSA
374
#ifdef CONFIG_SERIAL_8250_RSA

Return to bug 4270