From 58764f2e163a15225b58fcf48b6104c0f2c4142c Mon Sep 17 00:00:00 2001 From: Ollrogge Date: Wed, 5 Jan 2022 21:46:15 +0100 Subject: [PATCH] usbus/hid: Remove unimplemented function declaration --- sys/include/usb/usbus/hid.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/sys/include/usb/usbus/hid.h b/sys/include/usb/usbus/hid.h index d70f89158e..7d0f76195b 100644 --- a/sys/include/usb/usbus/hid.h +++ b/sys/include/usb/usbus/hid.h @@ -102,18 +102,6 @@ void usbus_hid_init(usbus_t *usbus, usbus_hid_device_t *hid, usbus_hid_cb_t cb, const uint8_t *report_desc, size_t report_desc_size); -/** - * @brief Submit bytes to the HID handler - * - * @param[in] hid USBUS HID handler context - * @param[in] buf buffer to submit - * @param[in] len length of the submitted buffer - * - * @return Number of bytes added to the HID ring buffer - */ -size_t usbus_hid_submit(usbus_hid_device_t *hid, const uint8_t *buf, - size_t len); - #ifdef __cplusplus } #endif