diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-05-03 20:15:56 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-05-04 18:09:29 +0200 |
commit | a85f12ad12a6240f39218dca08bd7f8937db6b6c (patch) | |
tree | 827569e9b8eee7ea94daddd5661539da12f62af3 /drivers | |
parent | 8e9f8261d7ce2e35f0e45b9751df4ca8e0079558 (diff) | |
download | linux-a85f12ad12a6240f39218dca08bd7f8937db6b6c.tar.gz linux-a85f12ad12a6240f39218dca08bd7f8937db6b6c.tar.bz2 linux-a85f12ad12a6240f39218dca08bd7f8937db6b6c.zip |
serial: 8250_exar: Use PCI_SUBVENDOR_ID_IBM for subvendor ID
Use PCI_SUBVENDOR_ID_IBM for subvendor ID instead of vendor one.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Parker Newman <pnewman@connecttech.com>
Link: https://lore.kernel.org/r/20240503171917.2921250-5-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/tty/serial/8250/8250_exar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_exar.c b/drivers/tty/serial/8250/8250_exar.c index ab0abc14ecf8..5405a1f463f1 100644 --- a/drivers/tty/serial/8250/8250_exar.c +++ b/drivers/tty/serial/8250/8250_exar.c @@ -1752,7 +1752,7 @@ static const struct exar8250_board pbn_exar_XR17V8358 = { PCI_DEVICE_SUB( \ PCI_VENDOR_ID_EXAR, \ PCI_DEVICE_ID_EXAR_##devid, \ - PCI_VENDOR_ID_IBM, \ + PCI_SUBVENDOR_ID_IBM, \ PCI_SUBDEVICE_ID_IBM_##sdevid), 0, 0, \ (kernel_ulong_t)&bd \ } |