summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-03-29 21:53:55 +0200
committerGitHub <noreply@github.com>2021-03-29 21:53:55 +0200
commitfb7dcbf7af4fc718bccd3641dcdf997a4310da53 (patch)
treec5a8bd45de1f318f36c0b876898d8b716f143679 /src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
parentMerge pull request #6118 from MerryMage/dynarmic (diff)
parentnvdrv: Pass device fd and handle device create methods for device opening and closing (diff)
downloadyuzu-fb7dcbf7af4fc718bccd3641dcdf997a4310da53.tar
yuzu-fb7dcbf7af4fc718bccd3641dcdf997a4310da53.tar.gz
yuzu-fb7dcbf7af4fc718bccd3641dcdf997a4310da53.tar.bz2
yuzu-fb7dcbf7af4fc718bccd3641dcdf997a4310da53.tar.lz
yuzu-fb7dcbf7af4fc718bccd3641dcdf997a4310da53.tar.xz
yuzu-fb7dcbf7af4fc718bccd3641dcdf997a4310da53.tar.zst
yuzu-fb7dcbf7af4fc718bccd3641dcdf997a4310da53.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_vic.cpp')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_vic.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
index 70849a9bd..0421fb956 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_vic.cpp
@@ -16,7 +16,8 @@ nvhost_vic::nvhost_vic(Core::System& system, std::shared_ptr<nvmap> nvmap_dev,
nvhost_vic::~nvhost_vic() = default;
-NvResult nvhost_vic::Ioctl1(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) {
+NvResult nvhost_vic::Ioctl1(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+ std::vector<u8>& output) {
switch (command.group) {
case 0x0:
switch (command.cmd) {
@@ -55,16 +56,19 @@ NvResult nvhost_vic::Ioctl1(Ioctl command, const std::vector<u8>& input, std::ve
return NvResult::NotImplemented;
}
-NvResult nvhost_vic::Ioctl2(Ioctl command, const std::vector<u8>& input,
+NvResult nvhost_vic::Ioctl2(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
const std::vector<u8>& inline_input, std::vector<u8>& output) {
UNIMPLEMENTED_MSG("Unimplemented ioctl={:08X}", command.raw);
return NvResult::NotImplemented;
}
-NvResult nvhost_vic::Ioctl3(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output,
- std::vector<u8>& inline_output) {
+NvResult nvhost_vic::Ioctl3(DeviceFD fd, Ioctl command, const std::vector<u8>& input,
+ std::vector<u8>& output, std::vector<u8>& inline_output) {
UNIMPLEMENTED_MSG("Unimplemented ioctl={:08X}", command.raw);
return NvResult::NotImplemented;
}
+void nvhost_vic::OnOpen(DeviceFD fd) {}
+void nvhost_vic::OnClose(DeviceFD fd) {}
+
} // namespace Service::Nvidia::Devices