diff options
| author | 2019-10-04 23:29:22 +0000 | |
|---|---|---|
| committer | 2019-10-04 23:41:22 +0000 | |
| commit | 8d0b1a957e4924e05c48590e30fb0d7bc7fea68e (patch) | |
| tree | e8ca231e59e801a09daff6353138c34d9ad99d3f /src | |
| parent | service/nfp: Silence -Wunused and -Wswitch (diff) | |
| download | yuzu-8d0b1a957e4924e05c48590e30fb0d7bc7fea68e.tar.gz yuzu-8d0b1a957e4924e05c48590e30fb0d7bc7fea68e.tar.xz yuzu-8d0b1a957e4924e05c48590e30fb0d7bc7fea68e.zip | |
service/nvdrv: Silence -Wswitch
Diffstat (limited to 'src')
4 files changed, 10 insertions, 4 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp index 6bc053f27..07c88465e 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp | |||
| @@ -45,6 +45,8 @@ u32 nvhost_as_gpu::ioctl(Ioctl command, const std::vector<u8>& input, const std: | |||
| 45 | return GetVARegions(input, output); | 45 | return GetVARegions(input, output); |
| 46 | case IoctlCommand::IocUnmapBufferCommand: | 46 | case IoctlCommand::IocUnmapBufferCommand: |
| 47 | return UnmapBuffer(input, output); | 47 | return UnmapBuffer(input, output); |
| 48 | default: | ||
| 49 | break; | ||
| 48 | } | 50 | } |
| 49 | 51 | ||
| 50 | if (static_cast<IoctlCommand>(command.cmd.Value()) == IoctlCommand::IocRemapCommand) | 52 | if (static_cast<IoctlCommand>(command.cmd.Value()) == IoctlCommand::IocRemapCommand) |
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp index ff6b1abae..eb88fee1b 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp | |||
| @@ -38,9 +38,10 @@ u32 nvhost_ctrl::ioctl(Ioctl command, const std::vector<u8>& input, const std::v | |||
| 38 | return IocCtrlEventUnregister(input, output); | 38 | return IocCtrlEventUnregister(input, output); |
| 39 | case IoctlCommand::IocCtrlEventSignalCommand: | 39 | case IoctlCommand::IocCtrlEventSignalCommand: |
| 40 | return IocCtrlEventSignal(input, output); | 40 | return IocCtrlEventSignal(input, output); |
| 41 | default: | ||
| 42 | UNIMPLEMENTED_MSG("Unimplemented ioctl"); | ||
| 43 | return 0; | ||
| 41 | } | 44 | } |
| 42 | UNIMPLEMENTED_MSG("Unimplemented ioctl"); | ||
| 43 | return 0; | ||
| 44 | } | 45 | } |
| 45 | 46 | ||
| 46 | u32 nvhost_ctrl::NvOsGetConfigU32(const std::vector<u8>& input, std::vector<u8>& output) { | 47 | u32 nvhost_ctrl::NvOsGetConfigU32(const std::vector<u8>& input, std::vector<u8>& output) { |
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp index 389ace76f..cc2192e5c 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp | |||
| @@ -40,9 +40,10 @@ u32 nvhost_ctrl_gpu::ioctl(Ioctl command, const std::vector<u8>& input, | |||
| 40 | return FlushL2(input, output); | 40 | return FlushL2(input, output); |
| 41 | case IoctlCommand::IocGetGpuTime: | 41 | case IoctlCommand::IocGetGpuTime: |
| 42 | return GetGpuTime(input, output); | 42 | return GetGpuTime(input, output); |
| 43 | default: | ||
| 44 | UNIMPLEMENTED_MSG("Unimplemented ioctl"); | ||
| 45 | return 0; | ||
| 43 | } | 46 | } |
| 44 | UNIMPLEMENTED_MSG("Unimplemented ioctl"); | ||
| 45 | return 0; | ||
| 46 | } | 47 | } |
| 47 | 48 | ||
| 48 | u32 nvhost_ctrl_gpu::GetCharacteristics(const std::vector<u8>& input, std::vector<u8>& output, | 49 | u32 nvhost_ctrl_gpu::GetCharacteristics(const std::vector<u8>& input, std::vector<u8>& output, |
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp index 2b8d1bef6..9de0ace22 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | |||
| @@ -44,6 +44,8 @@ u32 nvhost_gpu::ioctl(Ioctl command, const std::vector<u8>& input, const std::ve | |||
| 44 | return GetWaitbase(input, output); | 44 | return GetWaitbase(input, output); |
| 45 | case IoctlCommand::IocChannelSetTimeoutCommand: | 45 | case IoctlCommand::IocChannelSetTimeoutCommand: |
| 46 | return ChannelSetTimeout(input, output); | 46 | return ChannelSetTimeout(input, output); |
| 47 | default: | ||
| 48 | break; | ||
| 47 | } | 49 | } |
| 48 | 50 | ||
| 49 | if (command.group == NVGPU_IOCTL_MAGIC) { | 51 | if (command.group == NVGPU_IOCTL_MAGIC) { |