| 92 | } |
| 93 | |
| 94 | Device* DriverManager::GetDevice(const dev_id_t& dev_id) |
| 95 | { |
| 96 | auto manager = GetInstance(); |
| 97 | |
| 98 | return manager->RealGetDevice(dev_id); |
| 99 | } |
| 100 | |
| 101 | bool DriverManager::LoadDevice(Driver* driver, Device* device) |
| 102 | { |
no test coverage detected