From 79fbdfca170a8eec71f8e037df9132cfc6fc5f44 Mon Sep 17 00:00:00 2001 From: Liam Date: Tue, 14 Feb 2023 12:38:21 -0500 Subject: service: remove deleted services --- src/core/hle/service/pcv/pcv.cpp | 28 ---------------------------- 1 file changed, 28 deletions(-) (limited to 'src/core/hle/service/pcv') 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 { -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 { -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 { 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(system)->InstallAsService(sm); - std::make_shared(system)->InstallAsService(sm); - std::make_shared(system)->InstallAsService(sm); std::make_shared(system, "clkrst")->InstallAsService(sm); std::make_shared(system, "clkrst:i")->InstallAsService(sm); std::make_shared(system)->InstallAsService(sm); -- cgit v1.2.3