summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/cr50/board.h27
1 files changed, 12 insertions, 15 deletions
diff --git a/board/cr50/board.h b/board/cr50/board.h
index 3981582145..d83b72b180 100644
--- a/board/cr50/board.h
+++ b/board/cr50/board.h
@@ -61,7 +61,6 @@
/* USB configuration */
#define CONFIG_USB
#define CONFIG_USB_CONSOLE
-#define CONFIG_USB_HID
#define CONFIG_USB_I2C
#define CONFIG_USB_INHIBIT_INIT
#define CONFIG_USB_SELECT_PHY
@@ -161,24 +160,22 @@ int is_ec_rst_asserted(void);
/* USB interface indexes (use define rather than enum to expand them) */
#define USB_IFACE_CONSOLE 0
-#define USB_IFACE_HID 1
-#define USB_IFACE_AP 2
-#define USB_IFACE_EC 3
-#define USB_IFACE_UPGRADE 4
-#define USB_IFACE_SPI 5
-#define USB_IFACE_I2C 6
-#define USB_IFACE_COUNT 7
+#define USB_IFACE_AP 1
+#define USB_IFACE_EC 2
+#define USB_IFACE_UPGRADE 3
+#define USB_IFACE_SPI 4
+#define USB_IFACE_I2C 5
+#define USB_IFACE_COUNT 6
/* USB endpoint indexes (use define rather than enum to expand them) */
#define USB_EP_CONTROL 0
#define USB_EP_CONSOLE 1
-#define USB_EP_HID 2
-#define USB_EP_AP 3
-#define USB_EP_EC 4
-#define USB_EP_UPGRADE 5
-#define USB_EP_SPI 6
-#define USB_EP_I2C 7
-#define USB_EP_COUNT 8
+#define USB_EP_AP 2
+#define USB_EP_EC 3
+#define USB_EP_UPGRADE 4
+#define USB_EP_SPI 5
+#define USB_EP_I2C 6
+#define USB_EP_COUNT 7
/* UART indexes (use define rather than enum to expand them) */
#define UART_CR50 0