| 283 | } |
| 284 | |
| 285 | void device_set_driver_data(struct Device* device, void* driver_data) { |
| 286 | device->internal->driver_data = driver_data; |
| 287 | } |
| 288 | |
| 289 | void* device_get_driver_data(struct Device* device) { |
| 290 | return device->internal->driver_data; |
no outgoing calls
no test coverage detected