summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pcv/pcv.cpp
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-02-14 18:38:21 +0100
committerLiam <byteslice@airmail.cc>2023-02-14 18:38:21 +0100
commit79fbdfca170a8eec71f8e037df9132cfc6fc5f44 (patch)
treec4600d28974e8e75596570511d1767731fec3ab3 /src/core/hle/service/pcv/pcv.cpp
parentMerge pull request #9795 from Kelebek1/biquad_fix (diff)
downloadyuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar
yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar.gz
yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar.bz2
yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar.lz
yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar.xz
yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.tar.zst
yuzu-79fbdfca170a8eec71f8e037df9132cfc6fc5f44.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/pcv/pcv.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/core/hle/service/pcv/pcv.cpp b/src/core/hle/service/pcv/pcv.cpp
index f7a497a14..98037a8d4 100644
--- a/src/core/hle/service/pcv/pcv.cpp
+++ b/src/core/hle/service/pcv/pcv.cpp
@@ -52,32 +52,6 @@ public:
}
};
-class PCV_ARB final : public ServiceFramework<PCV_ARB> {
-public:
- explicit PCV_ARB(Core::System& system_) : ServiceFramework{system_, "pcv:arb"} {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, nullptr, "ReleaseControl"},
- };
- // clang-format on
-
- RegisterHandlers(functions);
- }
-};
-
-class PCV_IMM final : public ServiceFramework<PCV_IMM> {
-public:
- explicit PCV_IMM(Core::System& system_) : ServiceFramework{system_, "pcv:imm"} {
- // clang-format off
- static const FunctionInfo functions[] = {
- {0, nullptr, "SetClockRate"},
- };
- // clang-format on
-
- RegisterHandlers(functions);
- }
-};
-
class IClkrstSession final : public ServiceFramework<IClkrstSession> {
public:
explicit IClkrstSession(Core::System& system_, DeviceCode deivce_code_)
@@ -169,8 +143,6 @@ public:
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
std::make_shared<PCV>(system)->InstallAsService(sm);
- std::make_shared<PCV_ARB>(system)->InstallAsService(sm);
- std::make_shared<PCV_IMM>(system)->InstallAsService(sm);
std::make_shared<CLKRST>(system, "clkrst")->InstallAsService(sm);
std::make_shared<CLKRST>(system, "clkrst:i")->InstallAsService(sm);
std::make_shared<CLKRST_A>(system)->InstallAsService(sm);