diff options
| author | 2018-07-31 07:12:08 -0700 | |
|---|---|---|
| committer | 2018-07-31 07:12:08 -0700 | |
| commit | 86491da0d65b7628ba3f0efb01fdabfae55cfab9 (patch) | |
| tree | 8c78e1e5921a492c00bcf28f74f3c61060dbdc01 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #855 from bunnei/cubeb (diff) | |
| parent | service: Add the pcie service (diff) | |
| download | yuzu-86491da0d65b7628ba3f0efb01fdabfae55cfab9.tar.gz yuzu-86491da0d65b7628ba3f0efb01fdabfae55cfab9.tar.xz yuzu-86491da0d65b7628ba3f0efb01fdabfae55cfab9.zip | |
Merge pull request #872 from lioncash/pcie
service: Add the pcie service
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 3cad64837..bbaf7f601 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -44,6 +44,7 @@ | |||
| 44 | #include "core/hle/service/nim/nim.h" | 44 | #include "core/hle/service/nim/nim.h" |
| 45 | #include "core/hle/service/ns/ns.h" | 45 | #include "core/hle/service/ns/ns.h" |
| 46 | #include "core/hle/service/nvdrv/nvdrv.h" | 46 | #include "core/hle/service/nvdrv/nvdrv.h" |
| 47 | #include "core/hle/service/pcie/pcie.h" | ||
| 47 | #include "core/hle/service/pctl/pctl.h" | 48 | #include "core/hle/service/pctl/pctl.h" |
| 48 | #include "core/hle/service/pm/pm.h" | 49 | #include "core/hle/service/pm/pm.h" |
| 49 | #include "core/hle/service/prepo/prepo.h" | 50 | #include "core/hle/service/prepo/prepo.h" |
| @@ -225,6 +226,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 225 | NIM::InstallInterfaces(*sm); | 226 | NIM::InstallInterfaces(*sm); |
| 226 | NS::InstallInterfaces(*sm); | 227 | NS::InstallInterfaces(*sm); |
| 227 | Nvidia::InstallInterfaces(*sm); | 228 | Nvidia::InstallInterfaces(*sm); |
| 229 | PCIe::InstallInterfaces(*sm); | ||
| 228 | PCTL::InstallInterfaces(*sm); | 230 | PCTL::InstallInterfaces(*sm); |
| 229 | PlayReport::InstallInterfaces(*sm); | 231 | PlayReport::InstallInterfaces(*sm); |
| 230 | PM::InstallInterfaces(*sm); | 232 | PM::InstallInterfaces(*sm); |