diff options
Diffstat (limited to 'src/dev/arm/timer_cpulocal.hh')
-rw-r--r-- | src/dev/arm/timer_cpulocal.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/arm/timer_cpulocal.hh b/src/dev/arm/timer_cpulocal.hh index fc52b3da0..425f1fd6b 100644 --- a/src/dev/arm/timer_cpulocal.hh +++ b/src/dev/arm/timer_cpulocal.hh @@ -125,10 +125,10 @@ class CpuLocalTimer : public BasicPioDevice /** Called when the counter reaches 0 */ void timerAtZero(); - EventWrapper<Timer, &Timer::timerAtZero> timerZeroEvent; + EventFunctionWrapper timerZeroEvent; void watchdogAtZero(); - EventWrapper<Timer, &Timer::watchdogAtZero> watchdogZeroEvent; + EventFunctionWrapper watchdogZeroEvent; public: /** Restart the counter ticking at val * @param val the value to start at */ |