core: Run clang format
This commit is contained in:
@@ -842,7 +842,7 @@ void Module::Interface::GetCecInfoEventHandleSys(Kernel::HLERequestContext& ctx)
|
|||||||
rp.PopPID();
|
rp.PopPID();
|
||||||
|
|
||||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(ResultSuccess);
|
||||||
rb.PushCopyObjects(cecd->cecinfosys_event);
|
rb.PushCopyObjects(cecd->cecinfosys_event);
|
||||||
|
|
||||||
LOG_WARNING(Service_CECD, "(STUBBED) called");
|
LOG_WARNING(Service_CECD, "(STUBBED) called");
|
||||||
|
@@ -653,7 +653,7 @@ void GSP_GPU::SetInternalPriorities(Kernel::HLERequestContext& ctx) {
|
|||||||
const auto priority_with_rights = rp.Pop<u32>();
|
const auto priority_with_rights = rp.Pop<u32>();
|
||||||
|
|
||||||
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(ResultSuccess);
|
||||||
|
|
||||||
LOG_DEBUG(Service_GSP, "(STUBBED) called priority={:#02X}, priority_with_rights={:#02X}",
|
LOG_DEBUG(Service_GSP, "(STUBBED) called priority={:#02X}, priority_with_rights={:#02X}",
|
||||||
priority, priority_with_rights);
|
priority, priority_with_rights);
|
||||||
|
@@ -366,7 +366,7 @@ private:
|
|||||||
|
|
||||||
std::unique_ptr<Kernel::SessionRequestHandler::SessionDataBase> MakeSessionData() override;
|
std::unique_ptr<Kernel::SessionRequestHandler::SessionDataBase> MakeSessionData() override;
|
||||||
|
|
||||||
ResultCode AcquireGpuRight(const Kernel::HLERequestContext& ctx,
|
Result AcquireGpuRight(const Kernel::HLERequestContext& ctx,
|
||||||
const std::shared_ptr<Kernel::Process>& process, u32 flag,
|
const std::shared_ptr<Kernel::Process>& process, u32 flag,
|
||||||
bool blocking);
|
bool blocking);
|
||||||
|
|
||||||
|
@@ -1783,7 +1783,7 @@ void SOC_U::InitializeSockets(Kernel::HLERequestContext& ctx) {
|
|||||||
const u32 pid = rp.PopPID();
|
const u32 pid = rp.PopPID();
|
||||||
[[maybe_unused]] auto shared_memory = rp.PopObject<Kernel::SharedMemory>();
|
[[maybe_unused]] auto shared_memory = rp.PopObject<Kernel::SharedMemory>();
|
||||||
|
|
||||||
ResultCode res = ResultSuccess;
|
Result res = ResultSuccess;
|
||||||
if (initialized_processes.find(pid) == initialized_processes.end()) {
|
if (initialized_processes.find(pid) == initialized_processes.end()) {
|
||||||
initialized_processes.insert(pid);
|
initialized_processes.insert(pid);
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user