| 802 | } |
| 803 | |
| 804 | static int parse_hex_digits(const char *c) { |
| 805 | return parse_hex_digit(c[0]) << 4 | parse_hex_digit(c[1]) << 0; |
| 806 | } |
| 807 | |
| 808 | int usb_dusb_device(usb_event_t *event) { |
| 809 | dusb_context_t *context = event->context; |
no test coverage detected