| 462 | * and a pointer to the next node in the list. |
| 463 | */ |
| 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); |
| 470 |
nothing calls this directly
no outgoing calls
no test coverage detected