alpha: Get rid fo the namespace called EV5.
[gem5.git] / src / kern / linux / printk.cc
index 866353e313e40ebcd0f3eccf65ae6543e085ec73..577245f95a75da29b4b48a47d3ec15cce8af56e4 100644 (file)
@@ -32,7 +32,7 @@
 #include <sys/types.h>
 #include <algorithm>
 
-#include "arch/arguments.hh"
+#include "sim/arguments.hh"
 #include "base/trace.hh"
 #include "kern/linux/printk.hh"
 
@@ -40,7 +40,7 @@ using namespace std;
 
 
 void
-Printk(stringstream &out, TheISA::Arguments args)
+Printk(stringstream &out, Arguments args)
 {
     char *p = (char *)args++;
 
@@ -168,7 +168,7 @@ Printk(stringstream &out, TheISA::Arguments args)
                   break;
 
                 case 's': {
-                    char *s = (char *)args;
+                    const char *s = (const char *)args;
                     if (!s)
                         s = "<NULL>";