summaryrefslogtreecommitdiff
path: root/dev/tsunami.hh
diff options
context:
space:
mode:
authorAndrew Schultz <alschult@umich.edu>2004-02-03 17:02:48 -0500
committerAndrew Schultz <alschult@umich.edu>2004-02-03 17:02:48 -0500
commit0a585921f0675887df960ca100ae8bfc72ecc671 (patch)
treef69a215a31528180ed5af28dd2d150a78d1181cf /dev/tsunami.hh
parentd08e1bc56999d9529915f994d86d23518fa7a36b (diff)
downloadgem5-0a585921f0675887df960ca100ae8bfc72ecc671.tar.xz
Mostly changes to point Tsunami related stuff to use AdaptecController
dev/tsunami.cc: dev/tsunami.hh: Change to use AdaptecController with Tsunami --HG-- extra : convert_revision : 6ff4f9f7ae1959589340b2ab23755b4dbfec4dbc
Diffstat (limited to 'dev/tsunami.hh')
-rw-r--r--dev/tsunami.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/tsunami.hh b/dev/tsunami.hh
index e6623899d..f45bb2059 100644
--- a/dev/tsunami.hh
+++ b/dev/tsunami.hh
@@ -40,7 +40,7 @@
class IntrControl;
class ConsoleListener;
class SimConsole;
-class ScsiController;
+class AdaptecController;
class TlaserClock;
class EtherDev;
class TsunamiCChip;
@@ -67,7 +67,7 @@ class Tsunami : public SimObject
SimConsole *cons;
/** Pointer to the SCSI controller device */
- ScsiController *scsi;
+ AdaptecController *scsi;
/** Pointer to the ethernet controller device */
EtherDev *ethernet;
@@ -99,7 +99,7 @@ class Tsunami : public SimObject
* Constructor for the Tsunami Class.
* @param
*/
- Tsunami(const std::string &name, ScsiController *scsi,
+ Tsunami(const std::string &name, AdaptecController *scsi,
EtherDev *ethernet,
SimConsole *, IntrControl *intctrl, int intrFreq);