aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-02-15 12:33:59 -0800
committerGitHub <noreply@github.com>2023-02-15 12:33:59 -0800
commit0eb40117afc03ca7fbd90201ec83d9cd7f3d3fe4 (patch)
tree9d5085147a28898c866b14858f2041deb8497111 /src/core/hle/service/service.cpp
parent3599ef207752f0e5b9deb06922ea53984084000b (diff)
parent79fbdfca170a8eec71f8e037df9132cfc6fc5f44 (diff)
Merge pull request #9809 from liamwhite/unused-service
service: remove deleted services
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 0de67f1e1..1ffc1c694 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -68,7 +68,6 @@
#include "core/hle/service/time/time.h"
#include "core/hle/service/usb/usb.h"
#include "core/hle/service/vi/vi.h"
-#include "core/hle/service/wlan/wlan.h"
#include "core/reporter.h"
namespace Service {
@@ -306,7 +305,6 @@ Services::Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system
Time::InstallInterfaces(system);
USB::InstallInterfaces(*sm, system);
VI::InstallInterfaces(*sm, system, *nv_flinger, *hos_binder_driver_server);
- WLAN::InstallInterfaces(*sm, system);
}
Services::~Services() = default;