diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2017-02-07 11:51:19 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-02-13 15:46:13 +0100 |
commit | fd254a23cadaa4513f248a5f6b211ea63fdabe91 (patch) | |
tree | 944a0235250a30da0eda7bc223d931aa812aa2e1 | |
parent | 9202ba2397d1ded79078606c6921787b27a85e1a (diff) | |
download | op-kernel-dev-fd254a23cadaa4513f248a5f6b211ea63fdabe91.zip op-kernel-dev-fd254a23cadaa4513f248a5f6b211ea63fdabe91.tar.gz |
gpio: pci-idio-16: Fix PCI device ID code
The ACCES PCI-IDIO-16 has a PCI device ID code of 0x0DC8. It is
incorrect to use the PCI device ID code of the ACCES PCI-IIRO-8
(0x0F00). This patch fixes the said PCI device ID code mismatch.
Fixes: 02e74fc0401a ("gpio: Add GPIO support for the ACCES PCI-IDIO-16")
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-pci-idio-16.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-pci-idio-16.c b/drivers/gpio/gpio-pci-idio-16.c index 0220787..b10f3cf 100644 --- a/drivers/gpio/gpio-pci-idio-16.c +++ b/drivers/gpio/gpio-pci-idio-16.c @@ -331,7 +331,7 @@ static int idio_16_probe(struct pci_dev *pdev, const struct pci_device_id *id) } static const struct pci_device_id idio_16_pci_dev_id[] = { - { PCI_DEVICE(0x494F, 0x0F00) }, { 0 } + { PCI_DEVICE(0x494F, 0x0DC8) }, { 0 } }; MODULE_DEVICE_TABLE(pci, idio_16_pci_dev_id); |