gcc: Add extra parens to quell warnings.
[gem5.git] / src / dev / uart.hh
index f5d5e2855ade77cb8e3d8a5e35cdd9addc50e119..ba10c204c382c982fdfe33a716fac3a5b49c3bfe 100644 (file)
@@ -39,7 +39,7 @@
 #include "dev/io_device.hh"
 #include "params/Uart.hh"
 
-class SimConsole;
+class Terminal;
 class Platform;
 
 const int RX_INT = 0x1;
@@ -51,7 +51,7 @@ class Uart : public BasicPioDevice
   protected:
     int status;
     Platform *platform;
-    SimConsole *cons;
+    Terminal *term;
 
   public:
     typedef UartParams Params;