summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2017-12-28 23:45:44 -0500
committerGravatar bunnei2017-12-28 23:45:44 -0500
commitb67cbb8d9223f4757092e967c56878183d11fb09 (patch)
treecdf16d951a0e23fe297d551fddd534226b83f142 /src
parentservice: Add empty interface for pctl:a. (diff)
downloadyuzu-b67cbb8d9223f4757092e967c56878183d11fb09.tar.gz
yuzu-b67cbb8d9223f4757092e967c56878183d11fb09.tar.xz
yuzu-b67cbb8d9223f4757092e967c56878183d11fb09.zip
ap, aoc_u: Minor cleanup.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/am/am.cpp2
-rw-r--r--src/core/hle/service/aoc/aoc_u.cpp1
-rw-r--r--src/core/hle/service/aoc/aoc_u.h2
3 files changed, 1 insertions, 4 deletions
diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp
index 482aa07ef..45603c9b3 100644
--- a/src/core/hle/service/am/am.cpp
+++ b/src/core/hle/service/am/am.cpp
@@ -2,8 +2,6 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "common/logging/log.h"
6#include "core/hle/ipc_helpers.h"
7#include "core/hle/service/am/am.h" 5#include "core/hle/service/am/am.h"
8#include "core/hle/service/am/applet_oe.h" 6#include "core/hle/service/am/applet_oe.h"
9 7
diff --git a/src/core/hle/service/aoc/aoc_u.cpp b/src/core/hle/service/aoc/aoc_u.cpp
index 2096b707f..514cbc3de 100644
--- a/src/core/hle/service/aoc/aoc_u.cpp
+++ b/src/core/hle/service/aoc/aoc_u.cpp
@@ -2,7 +2,6 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <string>
6#include "core/hle/service/aoc/aoc_u.h" 5#include "core/hle/service/aoc/aoc_u.h"
7 6
8namespace Service { 7namespace Service {
diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h
index 43129e317..a2b385236 100644
--- a/src/core/hle/service/aoc/aoc_u.h
+++ b/src/core/hle/service/aoc/aoc_u.h
@@ -15,7 +15,7 @@ public:
15 ~AOC_U() = default; 15 ~AOC_U() = default;
16}; 16};
17 17
18/// Registers all LM services with the specified service manager. 18/// Registers all AOC services with the specified service manager.
19void InstallInterfaces(SM::ServiceManager& service_manager); 19void InstallInterfaces(SM::ServiceManager& service_manager);
20 20
21} // namespace AOC 21} // namespace AOC