NVDRV: Further refactors and eliminate old code.

This commit is contained in:
Fernando Sahmkow 2022-01-30 23:13:46 +01:00
parent 383f95a063
commit 43d8a8fb77
18 changed files with 12 additions and 242 deletions

View file

@ -49,11 +49,6 @@ public:
EventInterface(Module& module_);
~EventInterface();
void RegisterForSignal(Devices::nvhost_ctrl*);
void UnregisterForSignal(Devices::nvhost_ctrl*);
void Signal(u32 syncpoint_id, u32 value);
Kernel::KEvent* CreateEvent(std::string name);
void FreeEvent(Kernel::KEvent* event);
@ -96,8 +91,6 @@ public:
/// Closes a device file descriptor and returns operation success.
NvResult Close(DeviceFD fd);
void SignalSyncpt(const u32 syncpoint_id, const u32 value);
NvResult QueryEvent(DeviceFD fd, u32 event_id, Kernel::KEvent*& event);
private: