| 274 | } |
| 275 | |
| 276 | bool device_is_ready(const struct Device* device) { |
| 277 | return device->internal->state.started; |
| 278 | } |
| 279 | |
| 280 | bool device_is_compatible(const struct Device* device, const char* compatible) { |
| 281 | if (device->internal->driver == nullptr) return false; |
no outgoing calls
no test coverage detected