From ffaff520eea4ba8ccd64dcdb3ce36f11085ffa9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sven=20=C3=85kersten?= Date: Mon, 27 Sep 2021 13:37:54 +0200 Subject: [PATCH] include: usb: fix hid feature item typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix typo setting HID feature item to output item. Signed-off-by: Sven Ã…kersten --- include/usb/class/hid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/usb/class/hid.h b/include/usb/class/hid.h index 7814fa5163e..5cd475ee730 100644 --- a/include/usb/class/hid.h +++ b/include/usb/class/hid.h @@ -199,7 +199,7 @@ extern "C" { * @return HID Feature item */ #define HID_FEATURE(a) \ - HID_ITEM(HID_ITEM_TAG_OUTPUT, HID_ITEM_TYPE_MAIN, 1), a + HID_ITEM(HID_ITEM_TAG_FEATURE, HID_ITEM_TYPE_MAIN, 1), a /** * @brief Define HID Collection item with the data length of one byte.