Message ID | 20200727090629.169701-2-cyrozap@gmail.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 1841cb255da41e87bed9573915891d056f80e2e7 |
Headers | show |
Series | Small fixes for ASMedia host controllers | expand |
On Mon, Jul 27, 2020 at 04:06:28AM -0500, Forest Crossman wrote:
> Signed-off-by: Forest Crossman <cyrozap@gmail.com>
I can not take patches without any changelog text, sorry.
greg k-h
On Mon, Jul 27, 2020 at 4:26 AM Greg KH <gregkh@linuxfoundation.org> wrote: > > On Mon, Jul 27, 2020 at 04:06:28AM -0500, Forest Crossman wrote: > > Signed-off-by: Forest Crossman <cyrozap@gmail.com> > > I can not take patches without any changelog text, sorry. Ah, whoops, I'm very sorry about that! Should I send a v2 of just this patch? Or would it be better to send the whole series again? Thanks, Forest
On Mon, Jul 27, 2020 at 05:03:43AM -0500, Forest Crossman wrote: > On Mon, Jul 27, 2020 at 4:26 AM Greg KH <gregkh@linuxfoundation.org> wrote: > > > > On Mon, Jul 27, 2020 at 04:06:28AM -0500, Forest Crossman wrote: > > > Signed-off-by: Forest Crossman <cyrozap@gmail.com> > > > > I can not take patches without any changelog text, sorry. > > Ah, whoops, I'm very sorry about that! Should I send a v2 of just this > patch? Or would it be better to send the whole series again? Whole series is always easier to handle. thanks, greg k-h
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index 9234c82e70e4..baa5af88ca67 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c @@ -57,7 +57,9 @@ #define PCI_DEVICE_ID_AMD_PROMONTORYA_3 0x43ba #define PCI_DEVICE_ID_AMD_PROMONTORYA_2 0x43bb #define PCI_DEVICE_ID_AMD_PROMONTORYA_1 0x43bc +#define PCI_DEVICE_ID_ASMEDIA_1042_XHCI 0x1042 #define PCI_DEVICE_ID_ASMEDIA_1042A_XHCI 0x1142 +#define PCI_DEVICE_ID_ASMEDIA_2142_XHCI 0x2142 static const char hcd_name[] = "xhci_hcd"; @@ -260,13 +262,13 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci) xhci->quirks |= XHCI_LPM_SUPPORT; if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && - pdev->device == 0x1042) + pdev->device == PCI_DEVICE_ID_ASMEDIA_1042_XHCI) xhci->quirks |= XHCI_BROKEN_STREAMS; if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && - pdev->device == 0x1142) + pdev->device == PCI_DEVICE_ID_ASMEDIA_1042A_XHCI) xhci->quirks |= XHCI_TRUST_TX_LENGTH; if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA && - pdev->device == 0x2142) + pdev->device == PCI_DEVICE_ID_ASMEDIA_2142_XHCI) xhci->quirks |= XHCI_NO_64BIT_SUPPORT; if (pdev->vendor == PCI_VENDOR_ID_ASMEDIA &&
Signed-off-by: Forest Crossman <cyrozap@gmail.com> --- drivers/usb/host/xhci-pci.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-)