mirror of https://gitee.com/openkylin/linux.git
brcmfmac: Add log of superspeed device detection to USB probe.
Reviewed-by: Arend Van Spriel <arend@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Signed-off-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4dd7de1f9e
commit
de389a533b
|
@ -1417,7 +1417,9 @@ brcmf_usb_probe(struct usb_interface *intf, const struct usb_device_id *id)
|
|||
|
||||
devinfo->interval = IFEPDESC(usb, CONTROL_IF, 0).bInterval;
|
||||
|
||||
if (usb->speed == USB_SPEED_HIGH)
|
||||
if (usb->speed == USB_SPEED_SUPER)
|
||||
brcmf_dbg(USB, "Broadcom super speed USB wireless device detected\n");
|
||||
else if (usb->speed == USB_SPEED_HIGH)
|
||||
brcmf_dbg(USB, "Broadcom high speed USB wireless device detected\n");
|
||||
else
|
||||
brcmf_dbg(USB, "Broadcom full speed USB wireless device detected\n");
|
||||
|
|
Loading…
Reference in New Issue