summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-31 12:33:38 +0200
committerLioncash <mathew1800@gmail.com>2018-07-31 12:40:21 +0200
commite373027a73e84c04b28bbfb4fc837b4133b17d4f (patch)
tree8c78e1e5921a492c00bcf28f74f3c61060dbdc01 /src/core/hle/service/service.cpp
parentMerge pull request #855 from bunnei/cubeb (diff)
downloadyuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar
yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.gz
yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.bz2
yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.lz
yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.xz
yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.zst
yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
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 @@
#include "core/hle/service/nim/nim.h"
#include "core/hle/service/ns/ns.h"
#include "core/hle/service/nvdrv/nvdrv.h"
+#include "core/hle/service/pcie/pcie.h"
#include "core/hle/service/pctl/pctl.h"
#include "core/hle/service/pm/pm.h"
#include "core/hle/service/prepo/prepo.h"
@@ -225,6 +226,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
NIM::InstallInterfaces(*sm);
NS::InstallInterfaces(*sm);
Nvidia::InstallInterfaces(*sm);
+ PCIe::InstallInterfaces(*sm);
PCTL::InstallInterfaces(*sm);
PlayReport::InstallInterfaces(*sm);
PM::InstallInterfaces(*sm);