diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2007-05-01 12:33:03 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2007-05-01 12:33:03 -0400 |
commit | e0f8e57a7fcef1ee48ae1f73f825b59c7e8fd445 (patch) | |
tree | 84266fc915fa3d40ad1a9ce44e07403c6fdf277a /src | |
parent | 8d56145d7b6f759456993b63692165d4b510adda (diff) | |
parent | ccdf60f7b2023a63b7ead9404ec90e590d921cb3 (diff) | |
download | gem5-e0f8e57a7fcef1ee48ae1f73f825b59c7e8fd445.tar.xz |
Merge zizzer:/bk/newmem
into zeep.pool:/z/saidi/work/m5.newmem
--HG--
extra : convert_revision : 7e4b82f5949c0807d93fff80c44a8828968d1248
Diffstat (limited to 'src')
-rw-r--r-- | src/dev/uart8250.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/dev/uart8250.cc b/src/dev/uart8250.cc index d178bd1af..50307aad4 100644 --- a/src/dev/uart8250.cc +++ b/src/dev/uart8250.cc @@ -101,14 +101,11 @@ Uart8250::IntrEvent::scheduleIntr() Uart8250::Uart8250(Params *p) - : Uart(p), txIntrEvent(this, TX_INT), rxIntrEvent(this, RX_INT) + : Uart(p), IER(0), DLAB(0), LCR(0), MCR(0), lastTxInt(0), + txIntrEvent(this, TX_INT), rxIntrEvent(this, RX_INT) { pioSize = 8; - IER = 0; - DLAB = 0; - LCR = 0; - MCR = 0; } Tick |