mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Mark Junker <mjscod@gmx.de>
Don't detect a 16550A UART if it is a 16550. svn path=/trunk/; revision=14344
This commit is contained in:
parent
5f113d7735
commit
f0e7b26df9
1 changed files with 4 additions and 0 deletions
|
@ -62,7 +62,11 @@ SerialDetectUartType(
|
|||
{
|
||||
case 0x00:
|
||||
return Uart16450;
|
||||
case 0x40:
|
||||
case 0x80:
|
||||
/* Not sure about this but the documentation says that 0x40
|
||||
* indicates an unusable FIFO but my tests only worked
|
||||
* with 0x80 */
|
||||
return Uart16550;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue