| 464 | typedef struct DeviceListNode { |
| 465 | struct device* element; |
| 466 | struct DeviceListNode* next; |
| 467 | } DeviceListNode; |
| 468 | |
| 469 | bool device_check_ids(struct device* device, uint16_t vid, uint16_t pid); |
nothing calls this directly
no outgoing calls
no test coverage detected