service/dsp: Addressed comments about function name and pointer type

This commit is contained in:
NarcolepticK 2018-07-29 14:26:41 -04:00
parent b840c63386
commit 8f70e9a318
4 changed files with 14 additions and 13 deletions

View file

@ -403,7 +403,7 @@ DSP_DSP::~DSP_DSP() {
void InstallInterfaces(SM::ServiceManager& service_manager) {
auto dsp = std::make_shared<DSP_DSP>();
dsp->InstallAsService(service_manager);
Core::DSP().SetDspToInterrupt(std::move(dsp));
Core::DSP().SetServiceToInterrupt(std::move(dsp));
}
} // namespace DSP