]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
usb: kbd: move USB_KBD_BOOT_REPORT_SIZE to usb.h
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 23 Nov 2019 17:15:22 +0000 (18:15 +0100)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Mon, 25 Nov 2019 12:28:53 +0000 (13:28 +0100)
Move constant USB_KBD_BOOT_REPORT_SIZE. This allows us to reuse it.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
common/usb_kbd.c
include/usb.h

index d6b340bbe7b8a42031cc1a1da09c7da8b6034eb6..a6221ef71647c20ddef7d68b50346ab6c126d60c 100644 (file)
@@ -95,12 +95,6 @@ static const u8 usb_special_keys[] = {
 #define USB_KBD_LEDMASK                \
        (USB_KBD_NUMLOCK | USB_KBD_CAPSLOCK | USB_KBD_SCROLLLOCK)
 
-/*
- * USB Keyboard reports are 8 bytes in boot protocol.
- * Appendix B of HID Device Class Definition 1.11
- */
-#define USB_KBD_BOOT_REPORT_SIZE 8
-
 struct usb_kbd_pdata {
        unsigned long   intpipe;
        int             intpktsize;
index bcad552f85f033009a3a436c9b0e593501ffa0bd..efb67ea33ffbdbe3e8ee9460fd3977a73811d591 100644 (file)
@@ -242,6 +242,12 @@ int usb_host_eth_scan(int mode);
 
 #ifdef CONFIG_USB_KEYBOARD
 
+/*
+ * USB Keyboard reports are 8 bytes in boot protocol.
+ * Appendix B of HID Device Class Definition 1.11
+ */
+#define USB_KBD_BOOT_REPORT_SIZE 8
+
 int drv_usb_kbd_init(void);
 int usb_kbd_deregister(int force);