| 345 | #define USB_QUIRK_NONE 0 |
| 346 | |
| 347 | static inline void __printf(1, 2) usb_debug(const char *fmt, ...) |
| 348 | { |
| 349 | #ifdef USB_DEBUG |
| 350 | va_list ap; |
| 351 | va_start(ap, fmt); |
| 352 | vprintf(fmt, ap); |
| 353 | va_end(ap); |
| 354 | #endif |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * To be implemented by libpayload-client. It's called by the USB |
no test coverage detected