Browse Source

Merge pull request #385 from Subv/unimpl_ioctls

Nvdrv: Assert when receiving an unimplemented ioctl in the nv* handlers.
nce_cpp
bunnei 8 years ago
committed by GitHub
parent
commit
65d0d7ea69
  1. 2
      src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
  2. 2
      src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp
  3. 2
      src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp
  4. 2
      src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp
  5. 2
      src/core/hle/service/nvdrv/devices/nvmap.cpp

2
src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp

@ -13,7 +13,7 @@
namespace Service::Nvidia::Devices { namespace Service::Nvidia::Devices {
u32 nvdisp_disp0::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) { u32 nvdisp_disp0::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& output) {
UNIMPLEMENTED();
UNIMPLEMENTED_MSG("Unimplemented ioctl");
return 0; return 0;
} }

2
src/core/hle/service/nvdrv/devices/nvhost_ctrl.cpp

@ -18,7 +18,7 @@ u32 nvhost_ctrl::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<
case IoctlCommand::IocCtrlEventWaitCommand: case IoctlCommand::IocCtrlEventWaitCommand:
return IocCtrlEventWait(input, output); return IocCtrlEventWait(input, output);
} }
UNIMPLEMENTED();
UNIMPLEMENTED_MSG("Unimplemented ioctl");
return 0; return 0;
} }

2
src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp

@ -25,7 +25,7 @@ u32 nvhost_ctrl_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vec
case IoctlCommand::IocZcullGetInfo: case IoctlCommand::IocZcullGetInfo:
return ZCullGetInfo(input, output); return ZCullGetInfo(input, output);
} }
UNIMPLEMENTED();
UNIMPLEMENTED_MSG("Unimplemented ioctl");
return 0; return 0;
} }

2
src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp

@ -40,7 +40,7 @@ u32 nvhost_gpu::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u
} }
} }
UNIMPLEMENTED();
UNIMPLEMENTED_MSG("Unimplemented ioctl");
return 0; return 0;
}; };

2
src/core/hle/service/nvdrv/devices/nvmap.cpp

@ -32,7 +32,7 @@ u32 nvmap::ioctl(Ioctl command, const std::vector<u8>& input, std::vector<u8>& o
return IocParam(input, output); return IocParam(input, output);
} }
UNIMPLEMENTED();
UNIMPLEMENTED_MSG("Unimplemented ioctl");
return 0; return 0;
} }

Loading…
Cancel
Save