summaryrefslogtreecommitdiff
path: root/src/dev/uart8250.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev/uart8250.cc')
-rw-r--r--src/dev/uart8250.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/dev/uart8250.cc b/src/dev/uart8250.cc
index a014398b2..dfaf9088d 100644
--- a/src/dev/uart8250.cc
+++ b/src/dev/uart8250.cc
@@ -102,10 +102,9 @@ Uart8250::IntrEvent::scheduleIntr()
Uart8250::Uart8250(const Params *p)
- : Uart(p), IER(0), DLAB(0), LCR(0), MCR(0), lastTxInt(0),
+ : Uart(p, 8), IER(0), DLAB(0), LCR(0), MCR(0), lastTxInt(0),
txIntrEvent(this, TX_INT), rxIntrEvent(this, RX_INT)
{
- pioSize = 8;
}
Tick