diff options
Diffstat (limited to 'src/dev/arm')
-rw-r--r-- | src/dev/arm/realview.cc | 14 | ||||
-rw-r--r-- | src/dev/arm/realview.hh | 6 |
2 files changed, 1 insertions, 19 deletions
diff --git a/src/dev/arm/realview.cc b/src/dev/arm/realview.cc index ed6365efc..b33624cc6 100644 --- a/src/dev/arm/realview.cc +++ b/src/dev/arm/realview.cc @@ -60,19 +60,7 @@ using namespace TheISA; RealView::RealView(const Params *p) : Platform(p), system(p->system) -{ -#if FULL_SYSTEM //XXX No platform pointer on the system object in SE mode. - // set the back pointer from the system to myself - system->platform = this; -#endif -} - -Tick -RealView::intrFrequency() -{ - panic("Need implementation\n"); - M5_DUMMY_RETURN -} +{} void RealView::postConsoleInt() diff --git a/src/dev/arm/realview.hh b/src/dev/arm/realview.hh index 8ec9db5fc..70647d47c 100644 --- a/src/dev/arm/realview.hh +++ b/src/dev/arm/realview.hh @@ -82,12 +82,6 @@ class RealView : public Platform void setGic(Gic *_gic) { gic = _gic; } /** - * Return the interrupting frequency to AlphaAccess - * @return frequency of RTC interrupts - */ - virtual Tick intrFrequency(); - - /** * Cause the cpu to post a serial interrupt to the CPU. */ virtual void postConsoleInt(); |