sim-se: remove unused parameter

The init function which processes invoke on their page tables
has a thread context pointer parameter. The parameter is not
used by the code so remove it.

Change-Id: Ic4766fbc105d81c1c9ee4b5c0f428497dff2ab30
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/19948
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
diff --git a/src/mem/multi_level_page_table.hh b/src/mem/multi_level_page_table.hh
index f517eaf..df0d785 100644
--- a/src/mem/multi_level_page_table.hh
+++ b/src/mem/multi_level_page_table.hh
@@ -202,7 +202,7 @@
     ~MultiLevelPageTable() {}
 
     void
-    initState(ThreadContext* tc) override
+    initState() override
     {
         if (shared)
             return;
diff --git a/src/mem/page_table.hh b/src/mem/page_table.hh
index 03e18c2..9d2e3e3 100644
--- a/src/mem/page_table.hh
+++ b/src/mem/page_table.hh
@@ -99,7 +99,7 @@
     // flag which marks the page table as shared among software threads
     bool shared;
 
-    virtual void initState(ThreadContext* tc) {};
+    virtual void initState() {};
 
     // for DPRINTF compatibility
     const std::string name() const { return _name; }
diff --git a/src/sim/process.cc b/src/sim/process.cc
index 3a39dbe..735933d 100644
--- a/src/sim/process.cc
+++ b/src/sim/process.cc
@@ -282,7 +282,7 @@
     // mark this context as active so it will start ticking.
     tc->activate();
 
-    pTable->initState(tc);
+    pTable->initState();
 }
 
 DrainState