Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c14d444b authored by Jiri Slaby's avatar Jiri Slaby Committed by Linus Torvalds
Browse files

sx: switch subven and subid values



sx.c is failing to locate Graham's card.

Signed-off-by: default avatarJiri Slaby <jirislaby@gmail.com>
Cc: Graham Murray <gmurray@webwayone.co.uk>
Cc: <stable@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 64c70b1c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2721,9 +2721,9 @@ static void __devexit sx_pci_remove(struct pci_dev *pdev)
   its because the standard requires it. So check for SUBVENDOR_ID. */
static struct pci_device_id sx_pci_tbl[] = {
	{ PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_SX_XIO_IO8,
		.subvendor = 0x0200,.subdevice = PCI_ANY_ID },
		.subvendor = PCI_ANY_ID, .subdevice = 0x0200 },
	{ PCI_VENDOR_ID_SPECIALIX, PCI_DEVICE_ID_SPECIALIX_SX_XIO_IO8,
		.subvendor = 0x0300,.subdevice = PCI_ANY_ID },
		.subvendor = PCI_ANY_ID, .subdevice = 0x0300 },
	{ 0 }
};