With the recent series of patches, the symbol table loading moved from
"construct" time to "init" time, but the kernel function event
callback registration was left behind. This patch moves it to the
proper location.
ArmSystem::ArmSystem(Params *p)
: System(p), bootldr(NULL)
{
- debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
}
void
}
}
+ debugPrintkEvent = addKernelFuncEvent<DebugPrintkEvent>("dprintk");
}
ArmSystem::~ArmSystem()