Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1323295 > unrolled thread

[PATCH] usb: xhci: fix build error for USB_SPEED_SUPER_PLUS

Started byArnd Bergmann <arnd@arndb.de>
First post2016-02-01 17:20 +0100
Last post2016-02-02 09:10 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] usb: xhci: fix build error for USB_SPEED_SUPER_PLUS Arnd Bergmann <arnd@arndb.de> - 2016-02-01 17:20 +0100
    Re: [PATCH] usb: xhci: fix build error for USB_SPEED_SUPER_PLUS Mathias Nyman <mathias.nyman@linux.intel.com> - 2016-02-02 09:10 +0100

#1323295 — [PATCH] usb: xhci: fix build error for USB_SPEED_SUPER_PLUS

FromArnd Bergmann <arnd@arndb.de>
Date2016-02-01 17:20 +0100
Subject[PATCH] usb: xhci: fix build error for USB_SPEED_SUPER_PLUS
Message-ID<qXpmP-5sL-33@gated-at.bofh.it>
A recent patch introduced support for superspeed plus (USB3.1), but that
caused a new gcc warning in the XHCI code:

usb/host/xhci.c: In function 'xhci_drop_ep_from_interval_table':
usb/host/xhci.c:2440:2: error: enumeration value 'USB_SPEED_SUPER_PLUS' not handled in switch [-Werror=switch]

This changes the XHCI driver to handle USB_SPEED_SUPER_PLUS the
same way as USB_SPEED_SUPER in the xhci_drop_ep_from_interval_table
and xhci_add_ep_to_interval_table functions, explicitly ignoring
it.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 8a1b2725a60d ("usb: define USB_SPEED_SUPER_PLUS speed for SuperSpeedPlus USB3.1 devices")
---
Found on ARM randconfig builds last week

diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index 26a44c0e969e..a74beec879b4 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -2448,6 +2448,7 @@ void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
 		interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
 		break;
 	case USB_SPEED_SUPER:
+	case USB_SPEED_SUPER_PLUS:
 	case USB_SPEED_UNKNOWN:
 	case USB_SPEED_WIRELESS:
 		/* Should never happen because only LS/FS/HS endpoints will get
@@ -2507,6 +2508,7 @@ static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
 		interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
 		break;
 	case USB_SPEED_SUPER:
+	case USB_SPEED_SUPER_PLUS:
 	case USB_SPEED_UNKNOWN:
 	case USB_SPEED_WIRELESS:
 		/* Should never happen because only LS/FS/HS endpoints will get

[toc] | [next] | [standalone]


#1323871

FromMathias Nyman <mathias.nyman@linux.intel.com>
Date2016-02-02 09:10 +0100
Message-ID<qXEca-80M-17@gated-at.bofh.it>
In reply to#1323295
On 01.02.2016 18:18, Arnd Bergmann wrote:
> A recent patch introduced support for superspeed plus (USB3.1), but that
> caused a new gcc warning in the XHCI code:
>
> usb/host/xhci.c: In function 'xhci_drop_ep_from_interval_table':
> usb/host/xhci.c:2440:2: error: enumeration value 'USB_SPEED_SUPER_PLUS' not handled in switch [-Werror=switch]
>
> This changes the XHCI driver to handle USB_SPEED_SUPER_PLUS the
> same way as USB_SPEED_SUPER in the xhci_drop_ep_from_interval_table
> and xhci_add_ep_to_interval_table functions, explicitly ignoring
> it.
>

The original series that added USB_SPEED_SUPER_PLUS to both core and xhci was only partly accepted.
The core part was applied, the rest was asked to  be resubmitted.

Second part is still waiting to be applied.

http://www.spinics.net/lists/linux-usb/msg135493.html

-Mathias

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web