Move services out of the kernel and fix service registration

In addition, this adds a constructor for "RegionInfo".
This commit is contained in:
◱ PixelyIon
2019-11-17 01:50:08 +05:30
committed by ◱ PixelyIon
parent 8aea45170f
commit 26a67f70b7
30 changed files with 43 additions and 48 deletions

View File

@ -213,7 +213,7 @@ namespace skyline::gpu::device {
try {
function = vTable.at(cmd);
} catch (std::out_of_range &) {
state.logger->Warn("Cannot find IOCTL for device '{}': 0x{:X}", getName(), deviceType, cmd);
state.logger->Warn("Cannot find IOCTL for device '{}': 0x{:X}", getName(), cmd);
input.status = NvStatus::NotImplemented;
return;
}