From d109279543c36d20b98ceabdd921e6a9a0015782 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 1 Aug 2018 15:40:55 -0400 Subject: service: Add bpc and pcv services Adds the basic skeleton for the remaining pcv-related services based off information on Switch Brew. --- src/core/hle/service/service.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/hle/service/service.cpp') diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index fccc4c461..747a2252e 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -21,6 +21,7 @@ #include "core/hle/service/apm/apm.h" #include "core/hle/service/audio/audio.h" #include "core/hle/service/bcat/bcat.h" +#include "core/hle/service/bpc/bpc.h" #include "core/hle/service/btdrv/btdrv.h" #include "core/hle/service/btm/btm.h" #include "core/hle/service/erpt/erpt.h" @@ -47,6 +48,7 @@ #include "core/hle/service/nvdrv/nvdrv.h" #include "core/hle/service/pcie/pcie.h" #include "core/hle/service/pctl/pctl.h" +#include "core/hle/service/pcv/pcv.h" #include "core/hle/service/pm/pm.h" #include "core/hle/service/prepo/prepo.h" #include "core/hle/service/service.h" @@ -204,6 +206,7 @@ void Init(std::shared_ptr& sm) { APM::InstallInterfaces(*sm); Audio::InstallInterfaces(*sm); BCAT::InstallInterfaces(*sm); + BPC::InstallInterfaces(*sm); BtDrv::InstallInterfaces(*sm); BTM::InstallInterfaces(*sm); ERPT::InstallInterfaces(*sm); @@ -230,6 +233,7 @@ void Init(std::shared_ptr& sm) { Nvidia::InstallInterfaces(*sm); PCIe::InstallInterfaces(*sm); PCTL::InstallInterfaces(*sm); + PCV::InstallInterfaces(*sm); PlayReport::InstallInterfaces(*sm); PM::InstallInterfaces(*sm); Set::InstallInterfaces(*sm); -- cgit v1.2.3