diff options
| author | 2018-07-30 10:06:52 -0700 | |
|---|---|---|
| committer | 2018-07-30 10:06:52 -0700 | |
| commit | c5fa3560a63e82babea22b148128f1e70fd54d06 (patch) | |
| tree | bd86c30123f70ffe6d8fef6df3e8d166a585f33f /src/core/hle/service/service.cpp | |
| parent | Merge pull request #856 from lioncash/btm (diff) | |
| parent | service: Add wlan services (diff) | |
| download | yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.gz yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.xz yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.zip | |
Merge pull request #857 from lioncash/wlan
service: Add wlan services
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 61a81f564..3cad64837 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -56,6 +56,7 @@ | |||
| 56 | #include "core/hle/service/ssl/ssl.h" | 56 | #include "core/hle/service/ssl/ssl.h" |
| 57 | #include "core/hle/service/time/time.h" | 57 | #include "core/hle/service/time/time.h" |
| 58 | #include "core/hle/service/vi/vi.h" | 58 | #include "core/hle/service/vi/vi.h" |
| 59 | #include "core/hle/service/wlan/wlan.h" | ||
| 59 | 60 | ||
| 60 | using Kernel::ClientPort; | 61 | using Kernel::ClientPort; |
| 61 | using Kernel::ServerPort; | 62 | using Kernel::ServerPort; |
| @@ -227,12 +228,13 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 227 | PCTL::InstallInterfaces(*sm); | 228 | PCTL::InstallInterfaces(*sm); |
| 228 | PlayReport::InstallInterfaces(*sm); | 229 | PlayReport::InstallInterfaces(*sm); |
| 229 | PM::InstallInterfaces(*sm); | 230 | PM::InstallInterfaces(*sm); |
| 231 | Set::InstallInterfaces(*sm); | ||
| 230 | Sockets::InstallInterfaces(*sm); | 232 | Sockets::InstallInterfaces(*sm); |
| 231 | SPL::InstallInterfaces(*sm); | 233 | SPL::InstallInterfaces(*sm); |
| 232 | SSL::InstallInterfaces(*sm); | 234 | SSL::InstallInterfaces(*sm); |
| 233 | Time::InstallInterfaces(*sm); | 235 | Time::InstallInterfaces(*sm); |
| 234 | VI::InstallInterfaces(*sm, nv_flinger); | 236 | VI::InstallInterfaces(*sm, nv_flinger); |
| 235 | Set::InstallInterfaces(*sm); | 237 | WLAN::InstallInterfaces(*sm); |
| 236 | 238 | ||
| 237 | LOG_DEBUG(Service, "initialized OK"); | 239 | LOG_DEBUG(Service, "initialized OK"); |
| 238 | } | 240 | } |