From 344228ec10b38d90611dcc03216551457465a12b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Fri, 18 Aug 2017 01:46:21 +0200 Subject: [PATCH] WFSI: Implement noop ioctl 0x8f. --- Source/Core/Core/IOS/WFS/WFSI.cpp | 3 +++ Source/Core/Core/IOS/WFS/WFSI.h | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Source/Core/Core/IOS/WFS/WFSI.cpp b/Source/Core/Core/IOS/WFS/WFSI.cpp index ddf55b8acf..0b23a19419 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.cpp +++ b/Source/Core/Core/IOS/WFS/WFSI.cpp @@ -429,6 +429,9 @@ IPCCommandResult WFSI::IOCtl(const IOCtlRequest& request) break; } + case IOCTL_WFSI_NOOP: + break; + case IOCTL_WFSI_LOAD_DOL: { std::string path = diff --git a/Source/Core/Core/IOS/WFS/WFSI.h b/Source/Core/Core/IOS/WFS/WFSI.h index 6d3346d097..d37ea76d09 100644 --- a/Source/Core/Core/IOS/WFS/WFSI.h +++ b/Source/Core/Core/IOS/WFS/WFSI.h @@ -116,6 +116,8 @@ private: IOCTL_WFSI_SET_FST_BUFFER = 0x8e, + IOCTL_WFSI_NOOP = 0x8f, + IOCTL_WFSI_LOAD_DOL = 0x90, IOCTL_WFSI_FINALIZE_PATCH_INSTALL = 0x91,