diff mbox

Fixed typo on USB device ID number.

Message ID 1530115467-3771-1-git-send-email-guylovesbritt@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Guy Chronister June 27, 2018, 4:04 p.m. UTC
Signed-off-by: Guy Chronister <guylovesbritt@gmail.com>
---
 drivers/usb/host/xhci-pci.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Greg KH June 27, 2018, 10:20 p.m. UTC | #1
On Wed, Jun 27, 2018 at 11:04:27AM -0500, Guy Chronister wrote:
> Signed-off-by: Guy Chronister <guylovesbritt@gmail.com>

I can't take patches without any changelog text at all, sorry.


> ---
>  drivers/usb/host/xhci-pci.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
> index 6372edf..6ec766b 100644
> --- a/drivers/usb/host/xhci-pci.c
> +++ b/drivers/usb/host/xhci-pci.c
> @@ -196,7 +196,7 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
>  		xhci->quirks |= XHCI_BROKEN_STREAMS;
>  	}
>  	if (pdev->vendor == PCI_VENDOR_ID_RENESAS &&
> -	    pdev->device == 0x0014) {
> +	    pdev->device == 0x0015) {

Why do you think that 14 is not the valid number here?

Why is 15 the valid number?

thanks,

greg k-h
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c
index 6372edf..6ec766b 100644
--- a/drivers/usb/host/xhci-pci.c
+++ b/drivers/usb/host/xhci-pci.c
@@ -196,7 +196,7 @@  static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
 		xhci->quirks |= XHCI_BROKEN_STREAMS;
 	}
 	if (pdev->vendor == PCI_VENDOR_ID_RENESAS &&
-	    pdev->device == 0x0014) {
+	    pdev->device == 0x0015) {
 		xhci->quirks |= XHCI_TRUST_TX_LENGTH;
 		xhci->quirks |= XHCI_ZERO_64B_REGS;
 	}