From eb6b5d1219562e417d879c6d13e0a19eef169ad7 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 3 Mar 2022 21:57:44 -0800 Subject: [PATCH] Unused ok --- src/host/usbh.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/host/usbh.c b/src/host/usbh.c index a3c6c3a04..a61f40910 100644 --- a/src/host/usbh.c +++ b/src/host/usbh.c @@ -282,8 +282,9 @@ uint8_t tuh_i_product_get(uint8_t dev_addr) { static tuh_complete_cb_t string_get_cb; static bool string_get_complete (uint8_t dev_addr, tusb_control_request_t const * request, xfer_result_t result) { + (void) dev_addr; + (void) request; if (string_get_cb != NULL) { - TU_LOG2("string get done %d\r\n", result); string_get_cb(result); } string_get_cb = NULL;