| 257 | } |
| 258 | |
| 259 | void device_set_parent(Device* device, Device* parent) { |
| 260 | assert(!device->internal->state.started); |
| 261 | device->parent = parent; |
| 262 | } |
| 263 | |
| 264 | Device* device_get_parent(struct Device* device) { |
| 265 | return device->parent; |
no outgoing calls
no test coverage detected