diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-03-18 20:18:19 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-03-18 20:18:19 +0000 |
commit | 02d1725d710b1f786f75c4f3cadc14cff37d5772 (patch) | |
tree | f6a4ce62ec236aff32c850183312d15eb58f5c27 /sys/src/9 | |
parent | e83917a6582647684edaf3be4a632a45b673e2e4 (diff) |
uartpci: add serial-over-lan uart from x230/AMT
Diffstat (limited to 'sys/src/9')
-rw-r--r-- | sys/src/9/pc/uartpci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/src/9/pc/uartpci.c b/sys/src/9/pc/uartpci.c index 5819a4896..7de78fed6 100644 --- a/sys/src/9/pc/uartpci.c +++ b/sys/src/9/pc/uartpci.c @@ -212,6 +212,9 @@ uartpcipnp(void) break; } break; + case (0x1e3d << 16)|0x8086: /* C210 Series Chipset Family KT Controller */ + uart = uartpci(ctlrno, p, 0, 1, 1843200, "serialoverlan", 8); + break; } if(uart) ctlrno++; |